blob: bcd0ec32e0cebadc00c42b5c28b5ad79582f8a06 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import UIKit
protocol DemoDescription: CustomStringConvertible {
var segue: String { get }
var instance: Demo { get }
}
protocol Demo {
mutating func start()
}