mirror of
https://github.com/Lawin0129/LawinServer.git
synced 2026-01-13 02:42:22 +01:00
9 lines
293 B
JavaScript
9 lines
293 B
JavaScript
const Express = require("express");
|
|
const express = Express.Router();
|
|
const discovery = require("./../responses/discovery/discovery_frontend.json");
|
|
|
|
express.post("/fortnite/api/game/v2/creative/discovery/surface/*", async (req, res) => {
|
|
res.json(discovery);
|
|
})
|
|
|
|
module.exports = express; |