17 lines
241 B
Swift
17 lines
241 B
Swift
//
|
|
// ViewProtocol.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 7/22/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
public protocol ViewProtocol {
|
|
|
|
// Can setup ui here. Should be called in the initialization functions.
|
|
func setup()
|
|
}
|
|
|