mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 07:37:57 +00:00
10 lines
199 B
Rust
10 lines
199 B
Rust
const PROTOS: &[&str] = &[
|
|
"src/schema/api.v1.proto",
|
|
"src/schema/finality.v1.proto",
|
|
"src/schema/light.v1.proto"
|
|
];
|
|
|
|
fn main() {
|
|
prost_build::compile_protos(PROTOS, &["src/schema"]).unwrap();
|
|
}
|