Files
gp4/Sources/P4/Types.swift
T
Will Hawkins 4bec71dcf4 Refactor Library And Start Runtime
Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
2026-01-20 07:10:58 -05:00

14 lines
228 B
Swift

// The Swift Programming Language
// https://docs.swift.org/swift-book
public enum ValueType {
case Boolean(Bool)
}
public struct Value {
public var value_type: ValueType
}
public class Packet {
public init() {}
}