1
1
mirror of https://github.com/Burn-E99/TheArtificer.git synced 2026-06-04 09:03:50 -04:00

Apparently that import map affects deno run as well, fixed so bot runs now

This commit is contained in:
Ean Milligan
2025-05-01 18:19:57 -04:00
parent c981fe5664
commit 7230a7e6b5
41 changed files with 52 additions and 46 deletions

View File

@@ -1,7 +1,7 @@
import { Client } from '@mysql';
import config from '/config.ts';
import { LOCALMODE } from '/flags.ts';
import config from '~config';
import { LOCALMODE } from '~flags';
const dbClient = await new Client().connect({
hostname: LOCALMODE ? config.db.localhost : config.db.host,