Files
yaak-mountain-loop/src-tauri/yaak_plugin_runtime/build.rs
Gregory Schier f967820f12 Model and DB refactor (#61)
- [x] Move from `sqlx` to `rusqlite`
- [x] Generate TS types from Rust models
2024-08-05 07:58:20 -07:00

5 lines
138 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::compile_protos("../../proto/plugins/runtime.proto")?;
Ok(())
}