domani/src/lib.rs
Brian Picciano 420f1ff42a implement error::unexpected, use it everywhere
This is an improved form of the previous `error::Unexpected` type, now
with more capabilities and generally better naming.
2023-06-17 15:41:39 +02:00

8 lines
113 B
Rust

#![feature(iterator_try_collect)]
pub mod domain;
pub mod error;
pub mod origin;
pub mod service;
pub mod util;