Spaces:
Runtime error
Runtime error
File size: 222 Bytes
696bbfd |
1 2 3 4 5 6 7 |
import { Request, Response, NextFunction } from "express";
export const kobold = (req: Request, res: Response, next: NextFunction) => {
// TODO: Implement kobold
res.status(501).json({ error: "Not implemented" });
};
|