1
0
Fork 0
mirror of https://github.com/sbrl/terrain50-cli.git synced 2024-06-10 08:34:55 +00:00
terrain50-cli/src/index.mjs

10 lines
122 B
JavaScript
Raw Normal View History

#!/usr/bin/env node
import cli from './Bootstrap/cli.mjs';
(async () => {
"use strict";
await cli();
})();