nextjs-hf-spaces / src /pages /api /get_file_list.ts
3v324v23's picture
wip
31d949e
raw
history blame
252 Bytes
import process from "node:process";
import { NextApiRequest, NextApiResponse } from "next";
export default async function handler(
request: NextApiRequest,
response: NextApiResponse
) {
return response.status(200).json({ file_list: [123] });
}