Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
erikreppel committed Apr 4, 2024
1 parent a57b193 commit 48030d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ async fn main() -> eyre::Result<()> {

let ctl = start_services(&config).await?;

let handler = api::make_router(&config, ctl.clone()).await;
api::start_api(&config, handler).await?;
let router = api::make_router(&config, ctl.clone()).await;
api::start_api(&config, router).await?;

watch_stdin(ctl).await;

Expand Down

0 comments on commit 48030d4

Please sign in to comment.