reifydb-sub-admin 0.1.5

Admin subsystem for web-based administration
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) reifydb.com 2025
// This file is licensed under the AGPL-3.0-or-later, see license.md file

mod api;
mod static_handler;

pub use api::{
	handle_auth_status, handle_execute, handle_get_config, handle_health, handle_login, handle_logout,
	handle_metrics, handle_update_config,
};
pub use static_handler::{serve_index, serve_static};