Rename API and update test.

This commit is contained in:
Benoit Marty 2025-09-05 15:59:36 +02:00 committed by Benoit Marty
parent 65d682f8ca
commit 80fa442b64
4 changed files with 9 additions and 7 deletions

View file

@ -11,7 +11,7 @@ import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.map
interface SessionStore {
fun isLoggedIn(): Flow<LoggedInState>
fun loggedInStateFlow(): Flow<LoggedInState>
fun sessionsFlow(): Flow<List<SessionData>>
suspend fun addSession(sessionData: SessionData)