tangled
alpha
login
or
join now
t1c.dev
/
rocksky
forked from
rocksky.app/rocksky
2
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
2
fork
atom
overview
issues
pulls
pipelines
Add getStories xrpc handler
tsiry-sandratraina.com
1 month ago
57dfeb69
14525844
+2
1 changed file
expand all
collapse all
unified
split
apps
api
src
xrpc
index.ts
+2
apps/api/src/xrpc/index.ts
···
85
import matchSong from "./app/rocksky/song/matchSong";
86
import getTopArtists from "./app/rocksky/charts/getTopArtists";
87
import getTopTracks from "./app/rocksky/charts/getTopTracks";
0
88
89
export default function (server: Server, ctx: Context) {
90
// app.rocksky
···
173
matchSong(server, ctx);
174
getTopArtists(server, ctx);
175
getTopTracks(server, ctx);
0
176
177
return server;
178
}
···
85
import matchSong from "./app/rocksky/song/matchSong";
86
import getTopArtists from "./app/rocksky/charts/getTopArtists";
87
import getTopTracks from "./app/rocksky/charts/getTopTracks";
88
+
import getStories from "./app/rocksky/feed/getStories";
89
90
export default function (server: Server, ctx: Context) {
91
// app.rocksky
···
174
matchSong(server, ctx);
175
getTopArtists(server, ctx);
176
getTopTracks(server, ctx);
177
+
getStories(server, ctx);
178
179
return server;
180
}