1 files changed, 4 insertions, 3 deletions
diff --git a/api/src/routes/users/@me/billing/country-code.ts b/api/src/routes/users/@me/billing/country-code.ts
index ac3653a2..33d40796 100644
--- a/api/src/routes/users/@me/billing/country-code.ts
+++ b/api/src/routes/users/@me/billing/country-code.ts
@@ -1,10 +1,11 @@
import { Request, Response, Router } from "express";
+import { route } from "@fosscord/api";
const router: Router = Router();
-router.get("/", async (req: Request, res: Response) => {
+router.get("/", route({}), async (req: Request, res: Response) => {
//TODO
- res.json({ "country_code": "US" }).status(200);
+ res.json({ country_code: "US" }).status(200);
});
-export default router;
\ No newline at end of file
+export default router;
|