Skip to content

Instantly share code, notes, and snippets.

@Herakleis
Created August 18, 2017 20:58
Show Gist options
  • Save Herakleis/957e659e42d31ebcb697598abd0ab426 to your computer and use it in GitHub Desktop.
Save Herakleis/957e659e42d31ebcb697598abd0ab426 to your computer and use it in GitHub Desktop.
Singleton+Template
final class Singleton {
static let shared = Singleton()
private init() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment