aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/iOS/MainViewController.swift
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2018-10-13 06:59:59 +0530
committerRoopesh Chander <roop@roopc.net>2018-10-27 15:13:01 +0530
commitc76e5933e2158914a76dd24cbe1e9ae5aaee7b0d (patch)
treed0b99a1a04eafaccc30325d7ea90badbeaeb652f /WireGuard/WireGuard/UI/iOS/MainViewController.swift
parentPrepare for rewrite: Move WireGuardNetworkExtension into the new project folder (diff)
downloadwireguard-apple-c76e5933e2158914a76dd24cbe1e9ae5aaee7b0d.tar.xz
wireguard-apple-c76e5933e2158914a76dd24cbe1e9ae5aaee7b0d.zip
Move UI code into a separate platform-specific folder
Later, we hope to have a UI/macOS folder for developing a macOS client from this codebase. Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard/WireGuard/UI/iOS/MainViewController.swift')
-rw-r--r--WireGuard/WireGuard/UI/iOS/MainViewController.swift15
1 files changed, 15 insertions, 0 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/MainViewController.swift b/WireGuard/WireGuard/UI/iOS/MainViewController.swift
new file mode 100644
index 0000000..a296b5f
--- /dev/null
+++ b/WireGuard/WireGuard/UI/iOS/MainViewController.swift
@@ -0,0 +1,15 @@
+//
+// MainViewController.swift
+// WireGuard
+//
+// Created by Roopesh Chander on 11/08/18.
+// Copyright © 2018 Roopesh Chander. All rights reserved.
+//
+
+import UIKit
+
+class MainViewController: UIViewController {
+ override func loadView() {
+ self.view = UIView()
+ }
+}