Created
October 11, 2018 03:15
-
-
Save vialyx/669516256c1d76d52c9995fa183b950a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TransportStorage { | |
weak var output: NSObject? | |
var database: Any | |
var token: String? | |
init(database: Any) { | |
self.database = database | |
} | |
} | |
let storage = TransportStorage(database: UserDefaults.standard) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment