SpaceNinjaServer/src/controllers/api/getShipController.ts
Ângelo Tadeucci 84c825e8a7 Initial commit
2023-05-19 15:26:36 -03:00

9 lines
218 B
TypeScript

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