oapi: voice regions

This commit is contained in:
Puyodead1
2023-03-25 18:04:32 -04:00
parent 860b9d583e
commit fd283f1d15
2 changed files with 15 additions and 6 deletions

Binary file not shown.

View File

@@ -16,14 +16,23 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import { Router, Request, Response } from "express";
import { getIpAdress, route } from "@spacebar/api";
import { getVoiceRegions } from "@spacebar/api";
import { getIpAdress, getVoiceRegions, route } from "@spacebar/api";
import { Request, Response, Router } from "express";
const router: Router = Router();
router.get("/", route({}), async (req: Request, res: Response) => {
res.json(await getVoiceRegions(getIpAdress(req), true)); //vip true?
});
router.get(
"/",
route({
responses: {
200: {
body: "GuildVoiceRegionsResponse",
},
},
}),
async (req: Request, res: Response) => {
res.json(await getVoiceRegions(getIpAdress(req), true)); //vip true?
},
);
export default router;