dragoon-server 0.1.0

Public-relay server for the dragoon remote-executor: axum + rusqlite + ed25519 task signing + per-user message inbox.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `dragoon-server` — public-relay server for remote-executor.

pub mod app;
pub mod audit;
pub mod auth;
pub mod db;
pub mod messages_repo;
pub mod routes;
pub mod server_keys;
pub mod settings;
pub mod storage;
pub mod tasks_repo;
pub mod users_repo;
pub mod workers_repo;