From 0f5f5414ed51cbce6edd8ff9a1885c4667bc0fd5 Mon Sep 17 00:00:00 2001 From: Gregor Reitzenstein Date: Wed, 14 Oct 2020 13:53:08 +0200 Subject: [PATCH] Change module path from bffh-specific paths to more generic one --- api.capnp | 2 +- auth.capnp | 2 +- connection.capnp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api.capnp b/api.capnp index 7ad0e9f..95601f3 100644 --- a/api.capnp +++ b/api.capnp @@ -23,7 +23,7 @@ @0xfd92ce9be2369b8e; using Rust = import "rust.capnp"; -$Rust.parentModule("api"); +$Rust.parentModule("schema"); struct FabAccess { permissions @0 :Permissions; diff --git a/auth.capnp b/auth.capnp index 05aeeed..61d2f48 100644 --- a/auth.capnp +++ b/auth.capnp @@ -23,7 +23,7 @@ @0x81ac94a588025602; using Rust = import "rust.capnp"; -$Rust.parentModule("auth"); +$Rust.parentModule("schema"); struct AuthMessage { union { diff --git a/connection.capnp b/connection.capnp index b24e662..9f74ba1 100644 --- a/connection.capnp +++ b/connection.capnp @@ -23,7 +23,7 @@ @0x9e1c146a27dcc635; using Rust = import "rust.capnp"; -$Rust.parentModule("connection"); +$Rust.parentModule("schema"); using Auth = import "auth.capnp"; using Api = import "api.capnp";