vds_ios/VDS/Protocols/ViewProtocol.swift
Matt Bruce 2b103724e3 removed methods
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-03 11:44:44 -05:00

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()
}