Skip to main content

domi_server/
lib.rs

1//! DOMicile live-server library.
2//! See `events` for the v2 protocol event writer.
3//! See `serve` for HTTP primitives (banner, file serving, watcher).
4//! See `http` for the binary's axum + tokio layer (Phase 2c-γ).
5
6pub mod events;
7pub mod http;
8pub mod serve;
9pub mod tools;