Sync using the new logic.

This commit is contained in:
Kgothatso Ngako
2026-04-19 04:30:29 +02:00
parent 56ba03c2b3
commit 403b245880
12 changed files with 193 additions and 188 deletions

View File

@@ -0,0 +1,15 @@
package ac.aux.compose.managers
import ac.aux.compose.PlatformContext
import androidx.datastore.core.Storage
import io.ktor.client.plugins.cache.storage.FileStorage
actual fun computeDatastoreStorage(
platformContext: PlatformContext,
dataStoreFileName: String
): Storage<Set<CredentialsManager.Credential>> {
FileStorage(
directory = ""
)
TODO("Not yet implemented")
}