From b80360a2cfe87b4e4dd24f06010642976b858f26 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 31 Oct 2022 16:26:42 -0700 Subject: pds: switch to blocking web framework --- adenosine-pds/src/bin/adenosine-pds.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'adenosine-pds/src/bin/adenosine-pds.rs') diff --git a/adenosine-pds/src/bin/adenosine-pds.rs b/adenosine-pds/src/bin/adenosine-pds.rs index 3a00fac..5d0e638 100644 --- a/adenosine-pds/src/bin/adenosine-pds.rs +++ b/adenosine-pds/src/bin/adenosine-pds.rs @@ -53,8 +53,7 @@ enum Command { Inspect, } -#[tokio::main] -async fn main() -> Result<()> { +fn main() -> Result<()> { let opt = Opt::from_args(); let log_level = match opt.verbose { @@ -77,7 +76,7 @@ async fn main() -> Result<()> { match opt.cmd { Command::Serve {} => { // TODO: log some config stuff? - run_server().await + run_server() }, Command::Import {} => { unimplemented!() -- cgit v1.2.3