init commit,

This commit is contained in:
louiscklaw
2025-04-26 10:08:01 +08:00
parent 7d70b5826b
commit d0ea7e5452
473 changed files with 29989 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
export function readUserConfig(key: string) {
let current_config_string = localStorage.getItem('user_config') || '{}';
let current_config = JSON.parse(current_config_string);
return current_config[key];
}