initial: add login

This commit is contained in:
Tran Anh Tuan
2025-10-29 17:47:45 +07:00
parent 45dc7d1ff8
commit 79959a3050
19 changed files with 864 additions and 67 deletions

9
controller/typings.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
declare namespace Model {
interface LoginRequestBody {
username: string;
password: string;
}
interface LoginResponse {
token?: string;
}
}