Skip to content

Instantly share code, notes, and snippets.

@identity2
Created June 8, 2019 05:10
Show Gist options
  • Save identity2/d3a5e3fcce8b22df784d90f3bed9069a to your computer and use it in GitHub Desktop.
Save identity2/d3a5e3fcce8b22df784d90f3bed9069a to your computer and use it in GitHub Desktop.
Database Accessor
class DatabaseAccessor {
// The instance of DatabaseAccessor
static let sharedInstance = DatabaseAccessor()
// Private initializer to avoid instancing by other class.
private init() {}
/* ... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment