kapi-core 0.1.0

Core types for the kapi ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod key;
pub mod types;

// Re-export all public types for convenience
pub use error::CoreError;
pub use key::ResourceKey;
pub use types::{
    ContinueToken, FieldSelector, LabelRequirement, LabelSelector, ListOptions, ListResponse,
    ObjectMeta, SchemaData, StoredObject, SystemMetadata, ValidationError, WatchEvent,
    WatchEventType, WatchFilter,
};