feat: add admin command with stats subcommand and integrate dsxjs dependency

This commit is contained in:
grngxd 2025-08-03 22:13:02 +01:00
parent 9583267f64
commit 7089d8ad28
7 changed files with 90 additions and 7 deletions

View file

@ -1,3 +1,4 @@
import admin from "./admin";
import files from "./files";
import register from "./register";
import user from "./user";
@ -5,5 +6,6 @@ import user from "./user";
export default [
user,
register,
files
files,
admin
]