mirror of https://github.com/apple/pkl-swift
22 lines
504 B
Swift
22 lines
504 B
Swift
// Code generated from Pkl module `MyModule`. DO NOT EDIT.
|
|
import PklSwift
|
|
|
|
public enum MyModule {}
|
|
|
|
public protocol MyModule_Module: PklRegisteredType, DynamicallyEquatable, Hashable {
|
|
var foo: String { get }
|
|
}
|
|
|
|
extension MyModule {
|
|
public typealias Module = MyModule_Module
|
|
|
|
public struct ModuleImpl: Module {
|
|
public static let registeredIdentifier: String = "MyModule"
|
|
|
|
public var foo: String
|
|
|
|
public init(foo: String) {
|
|
self.foo = foo
|
|
}
|
|
}
|
|
} |