forked from loafle/openapi-generator-original
24 lines
511 B
Swift
24 lines
511 B
Swift
//
|
|
// ViewController.swift
|
|
// TestClientApp
|
|
//
|
|
// Created by Eric Hyche on 7/18/17.
|
|
// Copyright © 2017 Swagger Codegen. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class ViewController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
// Do any additional setup after loading the view, typically from a nib.
|
|
}
|
|
|
|
override func didReceiveMemoryWarning() {
|
|
super.didReceiveMemoryWarning()
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
}
|