Skip to main content

kapi_core/
lib.rs

1pub mod error;
2pub mod key;
3pub mod types;
4
5// Re-export all public types for convenience
6pub use error::CoreError;
7pub use key::ResourceKey;
8pub use types::{
9    ContinueToken, FieldSelector, LabelRequirement, LabelSelector, ListOptions, ListResponse,
10    ObjectMeta, SchemaData, StoredObject, SystemMetadata, ValidationError, WatchEvent,
11    WatchEventType, WatchFilter,
12};