21 lines
543 B
Rust
21 lines
543 B
Rust
// common/src/lib.rs
|
|
pub mod proto {
|
|
pub mod multieko2 {
|
|
pub mod adresar {
|
|
include!("proto/multieko2.adresar.rs");
|
|
}
|
|
pub mod common {
|
|
include!("proto/multieko2.common.rs");
|
|
}
|
|
pub mod table_structure {
|
|
include!("proto/multieko2.table_structure.rs");
|
|
}
|
|
pub mod uctovnictvo {
|
|
include!("proto/multieko2.uctovnictvo.rs");
|
|
}
|
|
pub const FILE_DESCRIPTOR_SET: &[u8] =
|
|
include_bytes!("proto/descriptor.bin");
|
|
}
|
|
}
|
|
|