add Authentication

This commit is contained in:
2025-01-01 04:04:28 +01:00
parent c2dfd8f2cc
commit d6f8af4917

View File

@@ -0,0 +1,12 @@
package ltd.hlaeja.library.accountRegistry
object Authentication {
data class Request(
val username: String,
val password: CharSequence,
)
data class Response(
val token: String,
)
}