athena_rs 3.26.3

Hyper performant polyglot Database driver
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Provisioning feature slice.
//!
//! This module provides a decoupled feature-facing surface for provisioning by
//! separating API wiring, core runtime operations, cloud providers, and shared
//! types into dedicated submodules.

pub mod api;
pub mod core;
pub mod providers;
pub mod types;

pub use api::{admin_provision, admin_provision_status, services};
pub use core::*;
pub use providers::*;
pub use types::*;