thaldrin/src/utils/yiff.ts

12 lines
288 B
TypeScript
Raw Normal View History

2021-04-08 23:33:22 +00:00
import Yiff from 'yiff'
2021-04-10 01:53:44 +00:00
import config from '../../config'
2021-04-08 23:33:22 +00:00
import pkg from '../../package.json'
let yiff = new Yiff({
2021-04-10 01:53:44 +00:00
useragent: `Thaldrin/v${pkg.version} (t8.pm/bot)`,
apikey: {
sheri: config.apis.sheri,
yiffrest: config.apis.yiffrest
}
2021-04-08 23:33:22 +00:00
})
export default yiff