mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
17 lines
244 B
Rust
17 lines
244 B
Rust
mod cli;
|
|
mod rpc;
|
|
|
|
pub use cli::CliContext;
|
|
pub use rpc::RpcContext;
|
|
|
|
impl From<CliContext> for () {
|
|
fn from(_: CliContext) -> Self {
|
|
()
|
|
}
|
|
}
|
|
impl From<RpcContext> for () {
|
|
fn from(_: RpcContext) -> Self {
|
|
()
|
|
}
|
|
}
|