summaryrefslogtreecommitdiff
path: root/src/event/handlers/stream/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/event/handlers/stream/mod.rs')
-rw-r--r--src/event/handlers/stream/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/handlers/stream/mod.rs b/src/event/handlers/stream/mod.rs
index 63bfff3..8b89c31 100644
--- a/src/event/handlers/stream/mod.rs
+++ b/src/event/handlers/stream/mod.rs
@@ -18,8 +18,8 @@ use crate::{
#[cfg(test)]
mod test;
-pub async fn handler(
- State(app): State<App>,
+pub async fn handler<P>(
+ State(app): State<App<P>>,
identity: Identity,
last_event_id: Option<LastEventId<Sequence>>,
Query(query): Query<QueryParams>,