Initial commit

This commit is contained in:
Aryan 2026-02-24 17:37:40 +05:30
commit 6072b2ba29
844 changed files with 220532 additions and 0 deletions

View 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)
}
}