Partypack/Server/Source/Routes/Library.ts
2024-01-22 00:41:59 +01:00

14 lines
201 B
TypeScript

import { Router } from "express";
const App = Router();
App.get("/song/data/:InternalID", (req, res) => {
res.json({
})
})
export default {
App,
DefaultAPI: "/api/library"
}