mirror of
https://github.com/koreanbots/core.git
synced 2025-12-16 22:30:23 +00:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import { NextApiHandler, NextApiRequest, NextApiResponse } from 'next'
|
|
|
|
const HelloWorld: NextApiHandler = (_req: NextApiRequest, res: NextApiResponse) => {
|
|
res.statusCode = 200
|
|
res.json({ happy: 'hacking' })
|
|
}
|
|
|
|
export default HelloWorld
|