add basic controller auth

This commit is contained in:
rafiarrafif
2025-05-07 23:56:18 +07:00
parent fb1654e048
commit cb7757a83b
8 changed files with 22 additions and 3 deletions

View File

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