Added Launch.json and Tasks.json sources for run and build

This commit is contained in:
rosefix7 2023-09-17 22:05:59 -04:00
parent 10e32adfe6
commit 3a6a2763f8
24 changed files with 980 additions and 567 deletions

View file

View file

@ -0,0 +1,10 @@
export interface Config_Interface {
discord: {
api_key: string;
application_client_id: string;
guild_id: string;
};
storage: {
}
}

View file

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

View file

View file