mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2024-11-21 01:04:15 +08:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import { LOG_MAJOR } from '../src/util/log_util';
|
|
import { runHeadless } from './headless';
|
|
|
|
void async function main() {
|
|
runHeadless();
|
|
|
|
LOG_MAJOR('Finished!');
|
|
}();
|