Skip to content

Commit 99b43a2

Browse files
committed
feat: Set default server port to 8000 instead of 0
1 parent bdb4926 commit 99b43a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mod world;
1313
#[derive(Parser, Debug)]
1414
#[command(version, about, long_about = None)]
1515
struct Args {
16-
#[arg(short, long, default_value_t = 0)]
16+
#[arg(short, long, default_value_t = 8000)]
1717
port: u16,
1818

1919
#[arg(short, long, default_value = "default")]

0 commit comments

Comments
 (0)