Newer
Older
taehui / taehui-fe / src / app / www / system / Totem.ts
@Taehui Taehui on 18 Mar 199 bytes 2024-03-18 오전 9:54
import { Pool } from "mariadb";
import { createClient } from "redis";

const totem = new (class {
  pool?: Pool;

  constructor() {
    createClient({
      url: process.env.TOTEM,
    });
  }
})();