41 lines
1.1 KiB
Rust
41 lines
1.1 KiB
Rust
// common/src/lib.rs
|
|
|
|
pub mod search;
|
|
|
|
pub mod proto {
|
|
pub mod komp_ac {
|
|
pub mod adresar {
|
|
include!("proto/komp_ac.adresar.rs");
|
|
}
|
|
pub mod auth {
|
|
include!("proto/komp_ac.auth.rs");
|
|
}
|
|
pub mod common {
|
|
include!("proto/komp_ac.common.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 const FILE_DESCRIPTOR_SET: &[u8] =
|
|
include_bytes!("proto/descriptor.bin");
|
|
}
|
|
}
|