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
mod account;
mod completion;
#[cfg(feature = "unstable")]
mod config;
pub mod flight;
pub mod formation;
#[cfg(feature = "unstable")]
mod image;
mod init;
mod license;
pub mod locks;
pub mod metadata;
pub mod restrict;

pub use self::{
    account::SeaplaneAccount,
    completion::SeaplaneShellCompletion,
    flight::SeaplaneFlight,
    formation::{Provider, Region, SeaplaneFormation},
    init::SeaplaneInit,
    license::SeaplaneLicense,
    locks::SeaplaneLocks,
    metadata::SeaplaneMetadata,
    restrict::SeaplaneRestrict,
};
#[cfg(feature = "unstable")]
pub use self::{config::SeaplaneConfig, image::SeaplaneImage};