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
Register matchSong xrpc handler
tsiry-sandratraina.com
2 months ago
76aa940e
0ffbc6fd
+2
1 changed file
expand all
collapse all
unified
split
apps
api
src
xrpc
index.ts
+2
apps/api/src/xrpc/index.ts
···
82
82
import unfollowAccount from "./app/rocksky/graph/unfollowAccount";
83
83
import getActorNeighbours from "./app/rocksky/actor/getActorNeighbours";
84
84
import getActorCompatibility from "./app/rocksky/actor/getActorCompatibility";
85
85
+
import matchSong from "./app/rocksky/song/matchSong";
85
86
86
87
export default function (server: Server, ctx: Context) {
87
88
// app.rocksky
···
167
168
unfollowAccount(server, ctx);
168
169
getActorNeighbours(server, ctx);
169
170
getActorCompatibility(server, ctx);
171
171
+
matchSong(server, ctx);
170
172
171
173
return server;
172
174
}