websync / pages /api /stats.ts
Shivam
Initial commit: Web-SyncPlay moved into Streamer
d092f57
import { countRooms, countUsers } from "../../lib/cache"
import { NextApiRequest, NextApiResponse } from "next"
export default async function stats(_: NextApiRequest, res: NextApiResponse) {
res.send({ rooms: await countRooms(), users: await countUsers() })
}