pubky-homeserver 0.9.1

Pubky core's homeserver.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Database entity definitions and repositories.
//!
//! Each submodule defines a domain entity struct and a repository with
//! query/mutation methods:
//! - [`user`]: User accounts keyed by Ed25519 public key, with quota tracking.
//! - [`session`]: Authentication sessions with capability-scoped access.
//! - [`entry`]: File metadata (path, content hash, MIME type, timestamps).
//! - [`signup_code`]: Token-gated registration codes.

pub mod entry;
pub mod session;
pub mod signup_code;
pub mod user;