use axum::http::StatusCode;
pub trait AASXFileServerService: Send + Sync + 'static {
async fn get_all_aasx_package_ids(&self) -> StatusCode;
}
pub trait AASShellService: Send + Sync + 'static {}
pub trait AASBasicDiscoveryService: Send + Sync + 'static {
}
pub trait AASRegistryService: Send + Sync + 'static {
}
pub trait AASRepositoryService: Send + Sync + 'static {
}
pub trait AsyncBulkAASRegistryService: Send + Sync + 'static {
}
pub trait AsyncBulkResultService: Send + Sync + 'static {
}
pub trait AsyncBulkStatusService: Send + Sync + 'static {
}
pub trait AsyncBulkSubmodelRegistryService: Send + Sync + 'static {
}
pub trait ConceptDescriptionRepositoryService: Send + Sync + 'static {
}
pub trait DescriptionService: Send + Sync + 'static {
}
pub trait SerializationService: Send + Sync + 'static {
}
pub trait SubmodelService: Send + Sync + 'static {
}
pub trait SubmodelRegistryService: Send + Sync + 'static {
}
pub trait SubmodelRepositoryService: Send + Sync + 'static {
async fn smth();
}