Created
July 19, 2016 21:31
-
-
Save pepicrft/8e1aa486d0366dae7552b7739dd0e852 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
| // Offline.swift | |
| class Offline { | |
| // MARK: - Internal | |
| internal var storage: Storage | |
| // MARK: - Init | |
| public init() { | |
| self.storage = Storage(modeL: "Offline") | |
| self.storage.setup() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment