13 lines
134 B
Swift
13 lines
134 B
Swift
//
|
|
// Initable.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 7/28/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol Initable {
|
|
init()
|
|
}
|