zt
10/11/2024, 11:18 PMCLOVIS
10/12/2024, 9:17 AMinterface AdminOperations {
// specific to admins
}
interface VIPOperations {
// specific to VIPs
}
…
class GuestApi : GuestOperations {
// …
}
class UserApi : UserOperations, GuestOperations by GestApi()
// …
zt
10/13/2024, 8:55 PMCLOVIS
10/14/2024, 7:36 AMobject YourProject {
fun connectAsGuest(): GuestApi
fun connectAsUser(authToken: String): UserApi
// …
}
zt
10/14/2024, 7:48 AM