generated from nhcarrigan/template
7997c9f59d
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 48s
- Add Rondelle interface with discord client and database - Add logger utility using @nhcarrigan/logger - Add database utility for Prisma client instantiation - Update index.ts with bot startup logic - Update .gitignore to exclude prod/ build output
14 lines
229 B
TypeScript
14 lines
229 B
TypeScript
/**
|
|
* @copyright 2026
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
import { Logger } from "@nhcarrigan/logger";
|
|
|
|
const logger = new Logger(
|
|
"rondelle",
|
|
process.env.LOG_TOKEN ?? "",
|
|
);
|
|
|
|
export { logger };
|