add thaldrin's api stuff

This commit is contained in:
Lio Young 2021-04-19 22:32:52 +02:00
parent b8e6b362a2
commit 53a9c7298f
No known key found for this signature in database
GPG Key ID: 789795A11879E169
2 changed files with 3 additions and 1 deletions

View File

@ -88,6 +88,7 @@ interface Supabase {
interface Apis { interface Apis {
sheri: string; sheri: string;
yiffrest: string; yiffrest: string;
thaldrin: string;
} }
interface Contributor { interface Contributor {
id: string; id: string;

View File

@ -5,7 +5,8 @@ let yiff = new Yiff({
useragent: `${config.variables.name}/v${pkg.version} (t8.pm/bot)`, useragent: `${config.variables.name}/v${pkg.version} (t8.pm/bot)`,
apikey: { apikey: {
sheri: config.apis.sheri, sheri: config.apis.sheri,
yiffrest: config.apis.yiffrest yiffrest: config.apis.yiffrest,
thaldrin: config.apis.thaldrin
} }
}) })