mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2024-11-21 01:04:15 +08:00
14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
import { Logger, LOG_MAJOR } from '../src/util/log_util';
|
|
import { runHeadless } from './headless';
|
|
import { headlessConfig } from './headless-config';
|
|
|
|
void async function main() {
|
|
if (headlessConfig.debug.logging) {
|
|
Logger.Get.enableLOGMAJOR();
|
|
}
|
|
|
|
runHeadless();
|
|
|
|
LOG_MAJOR('Finished!');
|
|
}();
|