aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/src/command/client/server.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/turtle/src/command/client/server.rs')
-rw-r--r--crates/turtle/src/command/client/server.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/turtle/src/command/client/server.rs b/crates/turtle/src/command/client/server.rs
index d821d6f8..88b12a7a 100644
--- a/crates/turtle/src/command/client/server.rs
+++ b/crates/turtle/src/command/client/server.rs
@@ -26,7 +26,7 @@ pub(crate) enum Cmd {
impl Cmd {
pub(crate) async fn run(self) -> Result<()> {
match self {
- Cmd::Start { host, port } => {
+ Self::Start { host, port } => {
let settings = Settings::new().wrap_err("could not load server settings")?;
let host = host.as_ref().unwrap_or(&settings.host).clone();
let port = port.unwrap_or(settings.port);
@@ -46,7 +46,7 @@ impl Cmd {
}
}
}
- Cmd::DefaultConfig => {
+ Self::DefaultConfig => {
// TODO(@bpeetz): Add this back <2026-06-11>
println!("TODO");
Ok(())