#![deny(missing_docs)]
mod manifest;
mod object;
mod operator;
mod runtime;
mod store;
pub mod util;
#[cfg(feature = "admission-webhook")]
pub mod admission;
pub mod state;
#[cfg(not(feature = "admission-webhook"))]
mod manager;
#[cfg(not(feature = "admission-webhook"))]
pub use manager::controller::ControllerBuilder;
#[cfg(not(feature = "admission-webhook"))]
pub use manager::Manager;
pub use manifest::Manifest;
pub use object::{ObjectState, ObjectStatus};
pub use operator::Operator;
pub use operator::Watchable;
pub use runtime::OperatorRuntime;
pub use state::{SharedState, State, Transition, TransitionTo};
pub use store::Store;
#[cfg(feature = "derive")]
#[allow(unused_imports)]
#[macro_use]
extern crate krator_derive;
#[cfg(feature = "derive")]
#[doc(hidden)]
pub use krator_derive::*;