项目文件夹

文件
T
2021-03-02 17:02:55 +08:00

15 行
206 B
JavaScript

import log from '@/helpers/log'
import train from './train'
/**
* Execute the training script
*/
(async () => {
try {
await train()
} catch (e) {
log.error(`Failed to train: ${e}`)
}
})()