WIP: implement proxy

This commit is contained in:
CJ van den Berg 2026-03-07 15:08:52 +01:00
parent cb37b9b82b
commit 87c4a6f32c
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 104 additions and 2 deletions

View file

@ -107,6 +107,14 @@ pub fn build(b: *std.Build) void {
},
});
const proxy_mod = b.createModule(.{
.root_source_file = b.path("src/remote/proxy.zig"),
.imports = &.{
.{ .name = "thespian", .module = thespian_mod },
.{ .name = "protocol", .module = protocol_mod },
},
});
const endpoint_mod = b.createModule(.{
.root_source_file = b.path("src/remote/endpoint.zig"),
.imports = &.{
@ -114,6 +122,7 @@ pub fn build(b: *std.Build) void {
.{ .name = "cbor", .module = cbor_mod },
.{ .name = "framing", .module = framing_mod },
.{ .name = "protocol", .module = protocol_mod },
.{ .name = "proxy", .module = proxy_mod },
},
});