From 1b9a55432a0e621edf2c21c815b58b8cfa23a6d8 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 18 Sep 2023 22:48:08 +0200 Subject: [javascript] Completely reworked contracting --- nodejs/automation/automation.js | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 nodejs/automation/automation.js (limited to 'nodejs/automation/automation.js') diff --git a/nodejs/automation/automation.js b/nodejs/automation/automation.js deleted file mode 100644 index 3184c2f..0000000 --- a/nodejs/automation/automation.js +++ /dev/null @@ -1,26 +0,0 @@ -import * as dbConfig from '../database/config.js'; -import * as dbShips from '../database/ships.js'; -import * as exploration from './exploration.js'; - -// This function registers then inits the database -export async function register(symbol, faction) { - const response = await fetch('https://api.spacetraders.io/v2/register', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - body: JSON.stringify({ - symbol: symbol, - faction: faction, - }), - }); - const json = await response.json(); - console.log(JSON.stringify(response, null, 2)); - if (response.error !== undefined) { - throw response; - } - dbConfig.registerAgent(json.data); - exploration.init(); - dbShips.setShip(json.data.ship); - // TODO contract -} -- cgit v1.2.3