mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
e905c9a92d
* IPFS server for transactions * Style * Indent * Log message * CLI option * Apply suggestions from code review Co-authored-by: Pierre Krieger <pierre.krieger1708@gmail.com> * Style * Style * Minor fixes Co-authored-by: Pierre Krieger <pierre.krieger1708@gmail.com>
10 lines
203 B
Rust
10 lines
203 B
Rust
const PROTOS: &[&str] = &[
|
|
"src/schema/api.v1.proto",
|
|
"src/schema/light.v1.proto",
|
|
"src/schema/bitswap.v1.2.0.proto",
|
|
];
|
|
|
|
fn main() {
|
|
prost_build::compile_protos(PROTOS, &["src/schema"]).unwrap();
|
|
}
|