summaryrefslogtreecommitdiff
path: root/nodejs/database/systems.ts
diff options
context:
space:
mode:
Diffstat (limited to 'nodejs/database/systems.ts')
-rw-r--r--nodejs/database/systems.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/nodejs/database/systems.ts b/nodejs/database/systems.ts
index d6d6cf1..646222e 100644
--- a/nodejs/database/systems.ts
+++ b/nodejs/database/systems.ts
@@ -1,5 +1,5 @@
import { DbData, db } from './db.ts';
-import { System, Waypoint } from '../model/system.ts';
+import { System, Waypoint } from '../lib/types.ts';
const addSystemStatement = db.prepare(`INSERT INTO systems(data) VALUES (json(?));`);
const getSystemStatement = db.prepare(`SELECT data FROM systems WHERE data->>'symbol' = ?;`);