mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
16 lines
331 B
Swift
16 lines
331 B
Swift
//
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension UIStoryboard {
|
|
private enum StoryboardName: String {
|
|
case main = "Main"
|
|
}
|
|
|
|
@objc
|
|
class var main: UIStoryboard {
|
|
return UIStoryboard(name: StoryboardName.main.rawValue, bundle: Bundle.main)
|
|
}
|
|
}
|