Skip to content

Instantly share code, notes, and snippets.

@humbleshuttler
Last active February 19, 2023 21:45
Show Gist options
  • Save humbleshuttler/c515dcf968c8b66601ed182b429198e3 to your computer and use it in GitHub Desktop.
Save humbleshuttler/c515dcf968c8b66601ed182b429198e3 to your computer and use it in GitHub Desktop.
Singleton in kotlin
object DatabaseSingleton {
private var isConnected: Boolean = false
init {
println("Connecting to database...")
isConnected = true
}
fun database(): DatabaseSingleton {
return this
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment