Move around stuff in sc_network (#5847)

This commit is contained in:
Pierre Krieger
2020-04-30 15:08:38 +02:00
committed by GitHub
parent c09bb1f350
commit 929bd07bef
13 changed files with 172 additions and 160 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
const PROTOS: &[&str] = &[
"src/protocol/schema/api.v1.proto",
"src/protocol/schema/finality.v1.proto",
"src/protocol/schema/light.v1.proto"
"src/schema/api.v1.proto",
"src/schema/finality.v1.proto",
"src/schema/light.v1.proto"
];
fn main() {
prost_build::compile_protos(PROTOS, &["src/protocol"]).unwrap();
prost_build::compile_protos(PROTOS, &["src/schema"]).unwrap();
}