SpaceNinjaServer/src/controllers/api/inboxController.ts
Ordis 96f945267a Revert "2 spaces tab, prettier command"
This reverts commit bd4ea5c94440304768883cae8169315ea15774f8.
2023-06-02 04:11:07 +02:00

9 lines
210 B
TypeScript

import { RequestHandler } from "express";
import inbox from "@/static/fixed_responses/inbox.json";
const inboxController: RequestHandler = (_req, res) => {
res.json(inbox);
};
export { inboxController };