9 lines
200 B
Rust
9 lines
200 B
Rust
// vapora-shared: Shared types and utilities for VAPORA v1.0
|
|
// Foundation: Minimal skeleton with core types
|
|
|
|
pub mod error;
|
|
pub mod models;
|
|
pub mod validation;
|
|
|
|
pub use error::{Result, VaporaError};
|