datasynth_server/grpc/
mod.rs1pub mod auth_interceptor;
4pub mod service;
5
6#[allow(clippy::all)]
8#[allow(warnings)]
9pub mod synth {
10 include!("synth.rs");
11}
12
13pub use service::SynthService;
14pub use synth::synthetic_data_service_server::SyntheticDataServiceServer;
15pub use synth::{
17 synthetic_data_service_server::SyntheticDataService, BulkGenerateRequest, BulkGenerateResponse,
18 ConfigRequest, ConfigResponse, ControlAction, ControlCommand, ControlResponse,
19 GenerationConfig, HealthResponse, MetricsResponse, StreamDataRequest,
20};