Implemented a basic extraction loop
This commit is contained in:
parent
f190aea975
commit
efdf50a55a
12 changed files with 2022 additions and 0 deletions
23
database/config.js
Normal file
23
database/config.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
import db from './db.js';
|
||||
|
||||
const getTokenStatement = db.prepare(`SELECT value from config where key = 'token';`);
|
||||
const registerAgentStatement = db.prepare(`INSERT INTO config(key, value) VALUES ('symbol', ?), ('faction', ?), ('token', ?);`);
|
||||
|
||||
export function getToken() {
|
||||
try {
|
||||
return getTokenStatement.get().value;
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
export function registerAgent(symbol, faction, token) {
|
||||
try {
|
||||
registerAgentStatement.run(symbol, faction, token);
|
||||
return true;
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
return false;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue