srctree

Gregory Mullen parent e044d9a4 4b8f4d7c
endpoint skel

filename was Deleted added: 16, removed: 1, total 15
@@ -0,0 +1,15 @@
pub const Endpoint = @This();
 
targets: []Target,
 
pub const Target = struct {
name: []const u8,
};
 
pub fn Endpoints(endpoints: anytype) !Endpoint {
if (@typeInfo(endpoints).Struct.is_tuple == false) return error.InvalidEndpointTypes;
 
return error.NotImplemented;
}
 
const Verse = @import("verse.zig");