summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-04-03 17:08:04 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-04-03 17:08:04 -0500
commitf944d7a3d315c4479bbd18ad9d55bfb876916bee (patch)
treef76aa3976db5fc7113d12f69148700601eeb673d /src
parent1403af6bbd106d5c5b9678163a05b9660d6fa3a3 (diff)
fix: fix typo in default config file name
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 353c7fc..67aa54a 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -19,7 +19,7 @@ async fn main() -> Result<(), main_error::MainError> {
let config_file = std::env::args()
.nth(1)
- .unwrap_or("/etc/unnamed_app.toml".to_string());
+ .unwrap_or("/etc/unnamed_server.toml".to_string());
let (listener, router) = Config::new()
.file(config_file)?