A decentralized music tracking and discovery platform built on AT Protocol 🎵

Register matchSong xrpc handler

+2
+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 + 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 + matchSong(server, ctx); 170 172 171 173 return server; 172 174 }