diff options
Diffstat (limited to 'api/src/routes/users/@me/billing/country-code.ts')
-rw-r--r-- | api/src/routes/users/@me/billing/country-code.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/api/src/routes/users/@me/billing/country-code.ts b/api/src/routes/users/@me/billing/country-code.ts new file mode 100644 index 00000000..ac3653a2 --- /dev/null +++ b/api/src/routes/users/@me/billing/country-code.ts @@ -0,0 +1,10 @@ +import { Request, Response, Router } from "express"; + +const router: Router = Router(); + +router.get("/", async (req: Request, res: Response) => { + //TODO + res.json({ "country_code": "US" }).status(200); +}); + +export default router; \ No newline at end of file |