feat(aklive2d): added ability to store latest dynchar info from offical website

This commit is contained in:
Haoyu Xu
2023-10-08 01:10:42 -04:00
parent ddf8f01986
commit abfadd804a
5 changed files with 88 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ import directory from './libs/directory.js'
import Background from './libs/background.js'
import CharwordTable from './libs/charword_table.js';
import Music from './libs/music.js';
import officalUpdate from './libs/offical_update.js';
async function main() {
global.__projectRoot = path.dirname(fileURLToPath(import.meta.url))
@@ -53,6 +54,9 @@ async function main() {
case 'music':
await musicTable.process()
process.exit(0)
case 'offical_update':
await officalUpdate()
process.exit(0)
default:
break
}