mirror of
https://github.com/lil-org/tokenary.git
synced 2024-12-14 14:40:20 +03:00
20 lines
394 B
Swift
20 lines
394 B
Swift
// Copyright © 2021 Encrypted Ink. All rights reserved.
|
|
|
|
import Cocoa
|
|
|
|
class ViewController: NSViewController {
|
|
|
|
@IBOutlet weak var label: NSTextField!
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
label.stringValue = "yo"
|
|
}
|
|
|
|
@IBAction func actionButtonTapped(_ sender: Any) {
|
|
Window.closeAll()
|
|
Window.activateSafari()
|
|
}
|
|
|
|
}
|