feat: with base envelope

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-09-17 00:31:43 +02:00
parent c6b903fa58
commit 795d009cd0
10 changed files with 1279 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
extern crate capnpc;
fn main() {
capnpc::CompilerCommand::new()
.output_path("src/")
.src_prefix("schemas/")
.file("schemas/envelope.capnp")
.run()
.unwrap();
}