feat: add client IP diagnostics and blocking

This commit is contained in:
whyour
2026-08-16 13:57:33 +08:00
parent 83e4490b57
commit 31f78e4d1f
16 changed files with 832 additions and 75 deletions
+2
View File
@@ -12,6 +12,7 @@ import subscription from './subscription';
import update from './update';
import dashboard from './dashboard';
import health from './health';
import clientIp from './clientIp';
export default () => {
const app = Router();
@@ -28,6 +29,7 @@ export default () => {
update(app);
dashboard(app);
health(app);
clientIp(app);
return app;
};