56 lines
1.5 KiB
Rust
56 lines
1.5 KiB
Rust
// common/src/lib.rs
|
|
|
|
pub mod search;
|
|
pub mod grpc_error;
|
|
|
|
pub mod proto {
|
|
pub mod komp_ac {
|
|
pub mod adresar {
|
|
include!("proto/komp_ac.adresar.rs");
|
|
}
|
|
pub mod analytics {
|
|
include!("proto/komp_ac.analytics.rs");
|
|
}
|
|
pub mod auth {
|
|
include!("proto/komp_ac.auth.rs");
|
|
}
|
|
pub mod backup {
|
|
include!("proto/komp_ac.backup.rs");
|
|
}
|
|
pub mod common {
|
|
include!("proto/komp_ac.common.rs");
|
|
}
|
|
pub mod document_data {
|
|
include!("proto/komp_ac.document_data.rs");
|
|
}
|
|
pub mod ecb {
|
|
include!("proto/komp_ac.ecb.rs");
|
|
}
|
|
pub mod table_structure {
|
|
include!("proto/komp_ac.table_structure.rs");
|
|
}
|
|
pub mod uctovnictvo {
|
|
include!("proto/komp_ac.uctovnictvo.rs");
|
|
}
|
|
pub mod table_definition {
|
|
include!("proto/komp_ac.table_definition.rs");
|
|
}
|
|
pub mod tables_data {
|
|
include!("proto/komp_ac.tables_data.rs");
|
|
}
|
|
pub mod table_script {
|
|
include!("proto/komp_ac.table_script.rs");
|
|
}
|
|
pub mod search {
|
|
include!("proto/komp_ac.search.rs");
|
|
}
|
|
pub mod search2 {
|
|
include!("proto/komp_ac.search2.rs");
|
|
}
|
|
pub mod table_validation {
|
|
include!("proto/komp_ac.table_validation.rs");
|
|
}
|
|
pub const FILE_DESCRIPTOR_SET: &[u8] = include_bytes!("proto/descriptor.bin");
|
|
}
|
|
}
|