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

[untested] - start reorganizing the solver folder (renamed to artigen here), organize imports better since deno has support for it now

This commit is contained in:
Ean Milligan
2025-05-01 17:56:06 -04:00
parent b9c7fac984
commit 6e1c6e8db3
74 changed files with 645 additions and 667 deletions

View File

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

View File

@@ -1,4 +1,4 @@
import dbClient from './client.ts';
import dbClient from 'db/client.ts';
type UserIdObj = {
userid: bigint;