1#![allow(clippy::derive_partial_eq_without_eq)]
5
6pub mod coven {
8 tonic::include_proto!("coven");
9}
10
11pub use coven::*;
13
14pub mod client {
16 pub use super::coven::admin_service_client::AdminServiceClient;
17 pub use super::coven::client_service_client::ClientServiceClient;
18 pub use super::coven::coven_control_client::CovenControlClient;
19}
20
21pub mod server {
23 pub use super::coven::admin_service_server::{AdminService, AdminServiceServer};
24 pub use super::coven::client_service_server::{ClientService, ClientServiceServer};
25 pub use super::coven::coven_control_server::{CovenControl, CovenControlServer};
26 pub use super::coven::pack_service_server::{PackService, PackServiceServer};
27}