Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class DatabaseAccessor {
  2. // The instance of DatabaseAccessor
  3. static let sharedInstance = DatabaseAccessor()
  4.  
  5. // Private initializer to avoid instancing by other class.
  6. private init() {}
  7.  
  8. /* ... */
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement