Updated bot source

This commit is contained in:
RoseFix7 2023-09-18 11:23:10 -04:00
parent 3a6a2763f8
commit 0dd6702e33
19 changed files with 247 additions and 20 deletions

View file

@ -1,10 +1,15 @@
import * as l_discord from "../discord";
export interface Config_Interface {
discord: {
api_key: string;
application_client_id: string;
guild_id: string;
};
storage: {
}
discord: l_discord.Config_Interface;
storage?: {}
}
export const defaulted: Config_Interface = {
discord: {
api_key: "",
application_client_id: "",
guild_id: ""
},
storage: {}
}

View file

@ -1,2 +0,0 @@
import * as config from "./config";
import * as discord from "./discord";