parent
51f7c046ce
commit
a3fbe984b6
@ -0,0 +1,10 @@
|
||||
package com.iqball.app.page
|
||||
|
||||
import androidx.compose.runtime.Composable
|
||||
import com.iqball.app.api.service.IQBallService
|
||||
import com.iqball.app.session.Session
|
||||
|
||||
@Composable
|
||||
fun HomePage(service: IQBallService, session: Session) {
|
||||
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
package com.iqball.app.session
|
||||
|
||||
data class DataSession(override val auth: Authentication? = null) : Session
|
@ -1,5 +0,0 @@
|
||||
package com.iqball.app.session
|
||||
|
||||
interface MutableSession : Session {
|
||||
override var auth: Authentication
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
package com.iqball.app.session
|
||||
|
||||
interface Session {
|
||||
val auth: Authentication
|
||||
val auth: Authentication?
|
||||
}
|
Loading…
Reference in new issue