feat: created discord callback endpoint

This commit is contained in:
원더 2021-01-24 10:14:59 +09:00
parent 6016907d0e
commit 01fd8ed40f

View File

@ -0,0 +1,8 @@
import { NextApiHandler, NextApiRequest, NextApiResponse } from 'next'
const Callback: NextApiHandler = (_req: NextApiRequest, res: NextApiResponse) => {
res.statusCode = 200
res.json({ happy: 'hacking' })
}
export default Callback