mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 22:32:22 +00:00
19 lines
335 B
Swift
19 lines
335 B
Swift
|
//
|
||
|
// PreferencesViewController.swift
|
||
|
// ZeroTier One
|
||
|
//
|
||
|
// Created by Grant Limberg on 6/23/16.
|
||
|
// Copyright © 2016 ZeroTier, Inc. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
|
class PreferencesViewController: NSViewController {
|
||
|
|
||
|
override func viewDidLoad() {
|
||
|
super.viewDidLoad()
|
||
|
// Do view setup here.
|
||
|
}
|
||
|
|
||
|
}
|