feat: early steps of storage and configuration

This commit is contained in:
2026-04-09 22:39:02 -04:00
parent 7d3a309d2b
commit 7885526944
14 changed files with 393 additions and 54 deletions

7
build.rs Normal file
View File

@@ -0,0 +1,7 @@
fn main() {
capnpc::CompilerCommand::new()
.file("bot.capnp")
.file("user.capnp")
.run()
.expect("couldn't compile capnproto schemas");
}