14 lines
574 B
JavaScript
14 lines
574 B
JavaScript
|
export default class Config{
|
||
|
static webhook_url = "";
|
||
|
static booru_url = "";
|
||
|
static booru_token = "";
|
||
|
|
||
|
|
||
|
// strange behavior of discord-webhooks-node if there are to much tags or actually if it is too long
|
||
|
// as I was locating the problem it seems not directly the module but something with the form request
|
||
|
// wanted to fork the discord-webhooks-node project of github, but this seems for the current state
|
||
|
// for to much effort for such a tiny purpose.
|
||
|
//
|
||
|
// so I'm keeping the show Tags setting on false
|
||
|
static showTags = false;
|
||
|
}
|