1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Tenant creation flows for the `cloud tenant create` command.
//!
//! Routes to the cloud-subscription flow ([`create_cloud_tenant`]) or one of
//! the local flows ([`create_local_tenant`] for a managed Docker container,
//! [`create_external_tenant`] for a user-supplied database).
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.
pub use create_cloud_tenant;
pub use ;
pub use swap_to_external_host;