axum-connect/axum-connect-crosstest/build.rs

8 lines
256 B
Rust
Raw Permalink Normal View History

2023-05-27 22:08:34 +00:00
use axum_connect_build::{axum_connect_codegen, AxumConnectGenSettings};
fn main() {
let settings = AxumConnectGenSettings::from_directory_recursive("proto")
.expect("failed to glob proto files");
axum_connect_codegen(settings).unwrap();
}