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