62 lines
1.7 KiB
Rust
62 lines
1.7 KiB
Rust
// common/src/lib.rs
|
|
|
|
#[cfg_attr(not(feature = "tantivy"), path = "search_light.rs")]
|
|
pub mod search;
|
|
pub mod alias;
|
|
pub mod decimal;
|
|
pub mod grpc_error;
|
|
pub mod money;
|
|
pub mod relationship;
|
|
pub mod system_column;
|
|
|
|
pub mod proto {
|
|
pub mod komp_ac {
|
|
pub mod accounting {
|
|
include!("proto/komp_ac.accounting.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 exchange_rates {
|
|
include!("proto/komp_ac.exchange_rates.rs");
|
|
}
|
|
pub mod table_structure {
|
|
include!("proto/komp_ac.table_structure.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");
|
|
}
|
|
}
|