import type { NextApiRequest, NextApiResponse } from 'next' import { nip95UploadHandler } from './handler' export const config = { api: { bodyParser: false }, } export default async function handler(req: NextApiRequest, res: NextApiResponse): Promise { return nip95UploadHandler(req, res) }