conversions5

This commit is contained in:
Filipriec
2026-08-23 15:50:03 +02:00
parent af7016e4c7
commit 0c33d1fa5c
20 changed files with 1197 additions and 845 deletions

View File

@@ -7,21 +7,21 @@ use axum::{
routing::get,
};
mod authz;
mod i18n;
mod pages;
mod schema;
mod services;
mod ui;
mod authz;
mod i18n;
// The server's system column vocabulary, read out of `common` the same way the
// generated protos are: this crate compiles that source tree directly instead
// of depending on the crate. Only `is_system_column` is used here.
#[path = "../../common/src/system_column.rs"]
#[allow(dead_code)]
mod system_column;
#[path = "../../common/src/grpc_error.rs"]
#[allow(dead_code)]
mod grpc_error;
#[path = "../../common/src/system_column.rs"]
#[allow(dead_code)]
mod system_column;
mod analytics {
include!(concat!(
env!("CARGO_MANIFEST_DIR"),
@@ -78,12 +78,17 @@ mod definitions {
"/../common/src/proto/komp_ac.ecb.rs"
));
}
pub mod exchange_rates {
include!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/../common/src/proto/komp_ac.exchange_rates.rs"
));
}
}
use auth::auth_service_client::AuthServiceClient;
use definitions::{
ecb,
table_definition::table_definition_client::TableDefinitionClient,
ecb, table_definition::table_definition_client::TableDefinitionClient,
table_script::table_script_client::TableScriptClient,
table_structure::table_structure_service_client::TableStructureServiceClient,
table_validation::table_validation_service_client::TableValidationServiceClient,