do it the right way

This commit is contained in:
c0repwn3r 2023-03-16 19:14:29 -04:00
parent f259cddb7d
commit 5b49d2fcfd
Signed by: core
GPG Key ID: FDBF740DADDCEECF
2 changed files with 5 additions and 9 deletions

View File

@ -1,9 +1,5 @@
fn main() {
prost_build::compile_protos(&[
"palmdef/palm.proto",
"palmdef/encrypted_reflection.proto",
"palmdef/encrypted_tunnel.proto",
"palmdef/unencrypted_reflection.proto",
"palmdef/unencrypted_tunnel.proto"
"palmdef/palm.proto"
], &["palmdef/"]).unwrap();
}

View File

@ -84,10 +84,10 @@ syntax = "proto3";
package palmdef;
import "unencrypted_reflection.proto";
import "encrypted_reflection.proto";
import "unencrypted_tunnel.proto";
import "encrypted_tunnel.proto";
import public "unencrypted_reflection.proto";
import public "encrypted_reflection.proto";
import public "unencrypted_tunnel.proto";
import public "encrypted_tunnel.proto";
// The core message, used to serialize all other packets.
message PalmPacket {