- add: api service gateway to allow website logins

This commit is contained in:
2024-12-14 01:51:00 -05:00
parent e6f78128a7
commit 4f826d7da5
4 changed files with 183 additions and 0 deletions

6
api-service/build.rs Normal file
View File

@@ -0,0 +1,6 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.compile_well_known_types(true)
.compile_protos(&["../proto/auth.proto"], &["../proto"])?;
Ok(())
}