initial push from external dev branches

This commit is contained in:
iFlip721
2026-06-11 16:40:21 -04:00
parent 986e83632b
commit 245034a43a
182 changed files with 15465 additions and 0 deletions

13
server/dist/routes/epgSources.js vendored Normal file
View File

@@ -0,0 +1,13 @@
import { Router } from 'express';
import { EpgSource } from '../models/EpgSource.js';
export const epgSourcesRouter = Router();
epgSourcesRouter.get('/', async (_req, res, next) => {
try {
const docs = await EpgSource.find({}, { _id: 0 }).lean();
res.json(docs);
}
catch (err) {
next(err);
}
});
//# sourceMappingURL=epgSources.js.map