diff options
Diffstat (limited to 'crates/router/src/main.rs')
-rw-r--r-- | crates/router/src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crates/router/src/main.rs b/crates/router/src/main.rs index cc4c927..ad81700 100644 --- a/crates/router/src/main.rs +++ b/crates/router/src/main.rs @@ -52,9 +52,7 @@ async fn main() -> Result<()> { .take() .ok_or_else(|| anyhow::anyhow!("jetstream is not ready"))?; - let services = state::Services { - jetstream, - }; + let services = state::Services { jetstream }; processor::serve(services, config, provider) .await |