pub mod error;
#[allow(clippy::result_large_err)]
pub mod grpc;
pub mod migration;
pub mod system;
pub use arcbox_grpc::v1::{
kubernetes_service_client, kubernetes_service_server, machine_service_client,
machine_service_server, migration_service_client, migration_service_server,
};
pub use arcbox_grpc::{
IconService, IconServiceServer, MigrationService, MigrationServiceServer, SandboxService,
SandboxServiceServer, SandboxSnapshotService, SandboxSnapshotServiceServer, SystemService,
SystemServiceServer,
};
pub use arcbox_protocol::v1::setup_status::Phase as SetupPhase;
pub use error::{ApiError, Result};
pub use grpc::{
IconServiceImpl, KubernetesServiceImpl, MachineServiceImpl, SandboxServiceImpl,
SandboxSnapshotServiceImpl, SharedRuntime,
};
pub use migration::MigrationServiceImpl;
pub use system::{SetupState, SystemServiceImpl};