Initial commit
This commit is contained in:
commit
6072b2ba29
844 changed files with 220532 additions and 0 deletions
25
app/src/oss/java/com/aryan/reader/Auth.kt
Normal file
25
app/src/oss/java/com/aryan/reader/Auth.kt
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
// src\oss
|
||||
package com.aryan.reader
|
||||
|
||||
import android.content.Context
|
||||
import kotlinx.coroutines.flow.Flow
|
||||
import kotlinx.coroutines.flow.flowOf
|
||||
|
||||
|
||||
class AuthRepository(private val applicationContext: Context) {
|
||||
|
||||
fun getSignedInUser(): UserData? {
|
||||
return null
|
||||
}
|
||||
|
||||
suspend fun signIn(activityContext: Context): UserData? {
|
||||
return null
|
||||
}
|
||||
|
||||
fun signOut() {
|
||||
}
|
||||
|
||||
fun observeAuthState(): Flow<UserData?> {
|
||||
return flowOf(null)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue