add basic files

This commit is contained in:
rafiarrafif
2025-05-06 01:11:50 +07:00
parent 92ac762aa6
commit b554ff0e5b
21 changed files with 669 additions and 2 deletions

View File

View File

View File

View File

View File

View File

@ -0,0 +1,5 @@
import { Context } from "elysia";
export const createUserRole = (ctx: Context) => {
return "OKOK";
};

View File

@ -0,0 +1,6 @@
import Elysia from "elysia";
import { createUserRole } from "./controller/createUserRole.controller";
export const userRoleModule = new Elysia({ prefix: "/user-role" })
.get("/", () => "Hello User Role Module")
.post("/create", createUserRole);

View File

View File

View File