WIP: implement proxy
This commit is contained in:
parent
cb37b9b82b
commit
87c4a6f32c
3 changed files with 104 additions and 2 deletions
|
|
@ -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 },
|
||||
},
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue