20 lines
433 B
Go
20 lines
433 B
Go
// this file has small funcs used without the pacakge
|
|
// or, one.. util, maybe I'll have more later :)
|
|
|
|
package discordgo
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
)
|
|
|
|
// convert to return as string
|
|
func printJSON(body []byte) {
|
|
var prettyJSON bytes.Buffer
|
|
error := json.Indent(&prettyJSON, body, "", "\t")
|
|
if error != nil {
|
|
fmt.Print("JSON parse error: ", error)
|
|
}
|
|
fmt.Println("RESPONSE ::\n" + string(prettyJSON.Bytes()))
|
|
}
|