29 lines
469 B
Swift
29 lines
469 B
Swift
//
|
|
// ViewController.swift
|
|
// SwiftyMarkdownExample macOS
|
|
//
|
|
// Created by Simon Fairbairn on 01/02/2020.
|
|
// Copyright © 2020 Voyage Travel Apps. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
import SwiftyMarkdown
|
|
|
|
class ViewController: NSViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
override var representedObject: Any? {
|
|
didSet {
|
|
// Update the view, if already loaded.
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|