feat: initial schema

This commit is contained in:
hdbg
2026-02-10 14:03:01 +01:00
parent 7816518977
commit 5b27c78bfc
8 changed files with 60 additions and 26 deletions

View File

@@ -1,14 +1,7 @@
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
pub mod proto {
tonic::include_proto!("arbiter");
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
pub mod auth {
tonic::include_proto!("arbiter.auth");
}
}