Skip to content

Instantly share code, notes, and snippets.

@igorescodro
Created October 16, 2023 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igorescodro/5b0cbac5b174ec3a7eebe4cee9975bb2 to your computer and use it in GitHub Desktop.
Save igorescodro/5b0cbac5b174ec3a7eebe4cee9975bb2 to your computer and use it in GitHub Desktop.
actual class DriverFactory(private val context: Context) {
actual fun createDriver(): SqlDriver {
return AndroidSqliteDriver(Database.Schema, context, "todo.db")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment