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:
@@ -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,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import dbClient from './client.ts';
|
||||
import dbClient from 'db/client.ts';
|
||||
|
||||
type UserIdObj = {
|
||||
userid: bigint;
|
||||
|
||||
Reference in New Issue
Block a user