summaryrefslogtreecommitdiffhomepage
path: root/ios
diff options
context:
space:
mode:
Diffstat (limited to 'ios')
-rw-r--r--ios/MullvadVPN/SegueIdentifier.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/ios/MullvadVPN/SegueIdentifier.swift b/ios/MullvadVPN/SegueIdentifier.swift
index d6cea1659b..f1d9c0c71b 100644
--- a/ios/MullvadVPN/SegueIdentifier.swift
+++ b/ios/MullvadVPN/SegueIdentifier.swift
@@ -9,7 +9,9 @@
import UIKit
// A phantom struct holding the storyboard segue identifiers for each view controller
-struct SegueIdentifier {
+enum SegueIdentifier {}
+
+extension SegueIdentifier {
enum Root: String, SegueConvertible {
case showSettings = "ShowSettings"
@@ -26,8 +28,6 @@ struct SegueIdentifier {
enum Account: String, SegueConvertible {
case logout = "Logout"
}
-
- private init() {}
}
protocol SegueConvertible: RawRepresentable {