summaryrefslogtreecommitdiff
path: root/nodejs/main.ts
blob: 2d15c60e2a9709c9454b63f5b3b3c87a63697c38 (plain)
1
2
3
4
5
6
7
8
9
10
import * as autoContracting from './automation/contracting.ts';
//import * as autoExploring from './automation/exploration.ts';
import * as autoInit from './automation/init.ts';
import { getShips } from './lib/ships.ts';

await autoInit.init();
const ships = await getShips();

await autoContracting.run(ships[0]); // dedicate the command ship to running contracts
//autoExploring.init();