pubky-homeserver 0.9.1

Pubky core's homeserver.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Admin control server.
//!
//! Separate HTTP server for operator-only actions: generating
//! signup tokens, enabling/disabling users, and a WebDAV interface for file
//! management. Protected routes require the `X-Admin-Password` header.

mod app;
mod app_state;
mod auth_middleware;
mod routes;
mod trace;

pub use app::{AdminServer, AdminServerBuildError};