pubky-homeserver 0.12.0

A Pubky homeserver implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! HTTP route handlers for the client server.
//!
//! - [`events`]: Historical event feed and live SSE stream for file change notifications.
//! - [`info`]: Homeserver feature discovery.
//! - [`root`]: Server info endpoint.
//! - [`signup_tokens`]: Signup token validation.
//! - [`tenants`]: Per-user data routes (read, write).
//!
//! Auth routes (signup, signin, session management) live in [`crate::client_server::auth::routes`].

pub(crate) mod events;
pub(crate) mod info;
pub(crate) mod root;
pub(crate) mod signup_tokens;
pub(crate) mod tenants;