refactor: reorganize api utility structure into subdirectories

This commit is contained in:
daydreamer-json
2026-02-05 09:49:44 +09:00
parent 9745337209
commit 8bc953d7e3
12 changed files with 52 additions and 41 deletions

View File

@@ -0,0 +1,15 @@
import accountService from './accountService.js';
import binding from './binding.js';
import launcher from './launcher.js';
import launcherWeb from './launcherWeb.js';
import u8 from './u8.js';
import webview from './webview.js';
export default {
accountService,
binding,
launcher,
launcherWeb,
u8,
webview,
};