This commit is contained in:
na2na-p 2022-10-01 04:10:12 +09:00
parent 4e2a59645d
commit cb95d595ac
No known key found for this signature in database
GPG key ID: C2038CA8B2D047B3

View file

@ -2,7 +2,6 @@ import autobind from 'autobind-decorator';
import Module from '@/module';
import Message from '@/message';
import fetch from 'node-fetch';
import {ReadStream} from 'fs';
export default class extends Module {
public readonly name = 'summonCat';
@ -39,7 +38,7 @@ export default class extends Module {
// https://aws.random.cat/meowにGETリクエストを送る
// fileに画像URLが返ってくる
const res = await fetch('https://api.thecatapi.com/v1/images/search');
const json = await res.json();
const json = await res.json() as any;
console.table(json);
const fileUri = json[0].url;
// 拡張子を取り除く