mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
30 lines
476 B
Go
30 lines
476 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"io/ioutil"
|
||
|
"log"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type randomCatResponse struct {
|
||
|
File string `json:"file"`
|
||
|
}
|
||
|
|
||
|
func RandomCat() string {
|
||
|
response, err := http.Get("https://aws.random.cat/meow")
|
||
|
if err != nil {
|
||
|
log.Fatalln(err)
|
||
|
}
|
||
|
|
||
|
responseData, err := ioutil.ReadAll(response.Body)
|
||
|
if err != nil {
|
||
|
log.Fatalln(err)
|
||
|
}
|
||
|
|
||
|
var responseObject randomCatResponse
|
||
|
json.Unmarshal(responseData, &responseObject)
|
||
|
|
||
|
return string(responseObject.File)
|
||
|
}
|