- update: made changes for new proto paths - add: skills to character table - add: load and send skills to client from db - add: chat proto
7 lines
231 B
Rust
7 lines
231 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
tonic_build::configure()
|
|
.compile_well_known_types(true)
|
|
.compile_protos(&["../proto/common.proto", "../proto/auth.proto"], &["../proto"])?;
|
|
Ok(())
|
|
}
|