tangled
alpha
login
or
join now
ptr.pet
/
hydrant
24
fork
atom
at protocol indexer with flexible filtering, xrpc queries, and a cursor-backed event stream, built on fjall
at-protocol
atproto
indexer
rust
fjall
24
fork
atom
overview
issues
6
pulls
pipelines
[api] fix router for stream
ptr.pet
4 days ago
21ef164e
8d487760
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+1
-1
1 changed file
expand all
collapse all
unified
split
src
api
mod.rs
+1
-1
src/api/mod.rs
···
15
let app = Router::new()
16
.route("/health", get(|| async { "OK" }))
17
.route("/stats", get(stats::get_stats))
18
-
.merge(stream::router())
19
.merge(xrpc::router())
20
.merge(filter::router())
21
.merge(repos::router())
···
15
let app = Router::new()
16
.route("/health", get(|| async { "OK" }))
17
.route("/stats", get(stats::get_stats))
18
+
.nest("/stream", stream::router())
19
.merge(xrpc::router())
20
.merge(filter::router())
21
.merge(repos::router())