aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/server.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/server.rs')
-rw-r--r--src/command/server.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/server.rs b/src/command/server.rs
index 6047e5bf..9d97e928 100644
--- a/src/command/server.rs
+++ b/src/command/server.rs
@@ -10,7 +10,7 @@ pub enum Cmd {
/// Start the server
Start {
/// The host address to bind
- #[clap(long, short)]
+ #[clap(long)]
host: Option<String>,
/// The port to bind
@@ -20,7 +20,7 @@ pub enum Cmd {
}
impl Cmd {
- pub async fn run(&self, settings: &Settings) -> Result<()> {
+ pub async fn run(&self, settings: Settings) -> Result<()> {
match self {
Self::Start { host, port } => {
let host = host