oai-proxy / src /proxy /kobold.ts
idos
Duplicate from khanon/oai-proxy
f81f327
raw
history blame contribute delete
222 Bytes
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" });
};