Files
AnimeTV-Backend/src/modules/userSession/index.ts
Rafi Arrafif 41b6807a36 🧑‍💻 (dev) change register flow
Change the user creation flow in the register so that it must go through the
main create user service first instead of directly accessing the create user
repo.
2025-10-11 02:00:19 +07:00

7 lines
156 B
TypeScript

import Elysia from "elysia";
export const userSessionModule = new Elysia({ prefix: "/sessions" }).get(
"/",
() => "User Session Module is working!"
);