refactor: reorganize project structure and improve user command handling

This commit is contained in:
grngxd 2025-07-31 19:25:31 +01:00
parent 5cfcb3ba0c
commit 49d6b51de6
7 changed files with 64 additions and 26 deletions

7
cmd/index.ts Normal file
View file

@ -0,0 +1,7 @@
import register from "./register";
import user from "./user";
export default [
user,
register
]