This commit is contained in:
wonderlandpark 2021-05-30 19:56:14 +09:00
parent 6d13a84128
commit 84addfb4de

View File

@ -5,7 +5,7 @@ import ResponseWrapper from '@utils/ResponseWrapper'
import { BotList } from '@types'
const NewList = RequestHandler().get(async (_req, res) => {
const result = await get.list.votes.load(1)
const result = await get.list.new.load(1)
return ResponseWrapper<BotList>(res, { code: 200, data: result })
})