ecr-server 0.2.2

The ecr mail server: REST, SSE, bearer auth and a maildir watcher over ecr-store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod app;
pub mod auth;
pub mod error;
pub mod events;
pub mod routes;
pub mod state;
pub mod watcher;
pub mod web;

pub use app::router;
pub use auth::TokenStore;
pub use events::{EventBus, ServerEvent};
pub use state::AppState;