summaryrefslogtreecommitdiff
path: root/automation/automation.js
diff options
context:
space:
mode:
authorJulien Dessaux2023-07-01 23:13:13 +0200
committerJulien Dessaux2023-07-01 23:13:13 +0200
commit36cc33f9e96a38ecea98ac8d26275b4828347d80 (patch)
tree653dcea7e656ec815fc0a1fa5664a6b89abccaa3 /automation/automation.js
parentFixed prepared statements (diff)
downloadspacetraders-36cc33f9e96a38ecea98ac8d26275b4828347d80.tar.gz
spacetraders-36cc33f9e96a38ecea98ac8d26275b4828347d80.tar.bz2
spacetraders-36cc33f9e96a38ecea98ac8d26275b4828347d80.zip
Moved the nodejs agent to its own subfolder to make room for my haskell agent
Diffstat (limited to 'automation/automation.js')
-rw-r--r--automation/automation.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/automation/automation.js b/automation/automation.js
deleted file mode 100644
index 3184c2f..0000000
--- a/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
-}