Skip to content

Instantly share code, notes, and snippets.

@SURYAKANTSHARMA
Last active February 22, 2020 07:33
Show Gist options
  • Save SURYAKANTSHARMA/a1e975f011ad8be155628b5dd4038fd5 to your computer and use it in GitHub Desktop.
Save SURYAKANTSHARMA/a1e975f011ad8be155628b5dd4038fd5 to your computer and use it in GitHub Desktop.
class Singleton {
private init() { }
static let sharedInstance = Singleton()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment