mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 04:53:40 +00:00
* install wizard project * reboot endpoint * Update frontend/projects/install-wizard/src/app/pages/home/home.page.ts Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> * Update frontend/projects/install-wizard/src/app/pages/home/home.page.ts Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> * Update frontend/projects/install-wizard/src/app/pages/home/home.page.ts Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> * update build * fix build * backend portion * increase image size * loaded * dont auto resize * fix install wizard * use localhost if still in setup mode * fix compat Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com> Co-authored-by: Aiden McClelland <me@drbonez.dev>
45 lines
817 B
Rust
45 lines
817 B
Rust
pub mod cli;
|
|
pub mod diagnostic;
|
|
pub mod install;
|
|
pub mod rpc;
|
|
pub mod sdk;
|
|
pub mod setup;
|
|
|
|
pub use cli::CliContext;
|
|
pub use diagnostic::DiagnosticContext;
|
|
pub use install::InstallContext;
|
|
pub use rpc::RpcContext;
|
|
pub use sdk::SdkContext;
|
|
pub use setup::SetupContext;
|
|
|
|
impl From<CliContext> for () {
|
|
fn from(_: CliContext) -> Self {
|
|
()
|
|
}
|
|
}
|
|
impl From<DiagnosticContext> for () {
|
|
fn from(_: DiagnosticContext) -> Self {
|
|
()
|
|
}
|
|
}
|
|
impl From<RpcContext> for () {
|
|
fn from(_: RpcContext) -> Self {
|
|
()
|
|
}
|
|
}
|
|
impl From<SdkContext> for () {
|
|
fn from(_: SdkContext) -> Self {
|
|
()
|
|
}
|
|
}
|
|
impl From<SetupContext> for () {
|
|
fn from(_: SetupContext) -> Self {
|
|
()
|
|
}
|
|
}
|
|
impl From<InstallContext> for () {
|
|
fn from(_: InstallContext) -> Self {
|
|
()
|
|
}
|
|
}
|