mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* wip * overhaul boot process * wip: new registry * wip * wip * wip * wip * wip * wip * os registry complete * ui fixes * fixes * fixes * more fixes * fix merkle archive
26 lines
521 B
Rust
26 lines
521 B
Rust
use rpc_toolkit::{Context, ParentHandler};
|
|
|
|
pub mod dhcp;
|
|
pub mod dns;
|
|
pub mod forward;
|
|
pub mod host;
|
|
pub mod keys;
|
|
pub mod mdns;
|
|
pub mod net_controller;
|
|
pub mod service_interface;
|
|
pub mod ssl;
|
|
pub mod static_server;
|
|
pub mod tor;
|
|
pub mod utils;
|
|
pub mod vhost;
|
|
pub mod web_server;
|
|
pub mod wifi;
|
|
|
|
pub const PACKAGE_CERT_PATH: &str = "/var/lib/embassy/ssl";
|
|
|
|
pub fn net<C: Context>() -> ParentHandler<C> {
|
|
ParentHandler::new()
|
|
.subcommand("tor", tor::tor::<C>())
|
|
.subcommand("dhcp", dhcp::dhcp::<C>())
|
|
}
|