File size: 222 Bytes
5bddbd8
 
 
 
 
 
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" });
};