mirror of
https://github.com/ApfelTeeSaft/LawinServerV2.git
synced 2026-08-26 19:23:39 +00:00
11 lines
297 B
JavaScript
11 lines
297 B
JavaScript
const express = require("express");
|
|
const app = express.Router();
|
|
const functions = require("../structs/functions.js");
|
|
|
|
app.get("/content/api/pages/*", async (req, res) => {
|
|
const contentpages = functions.getContentPages(req);
|
|
|
|
res.json(contentpages);
|
|
});
|
|
|
|
module.exports = app; |