update add remote config

This commit is contained in:
2025-12-03 11:10:33 +08:00
parent 502fef024f
commit 2dee724ec8
6 changed files with 501 additions and 3 deletions

5
src/uitls/show-more.ts Normal file
View File

@@ -0,0 +1,5 @@
import util from 'node:util';
export const showMore = (obj: any, depth = 5) => {
return util.inspect(obj, { showHidden: false, depth, colors: true });
};