SyntaxFix
Write A Post
Hire A Developer
Questions
Swift 4+
protocol Singleton: class { static var sharedInstance: Self { get } } final class Kraken: Singleton { static let sharedInstance = Kraken() private init() {} }