Added utils.Print() to utils

This commit is contained in:
Óscar M. Lage 2024-10-10 20:04:06 +02:00
parent 769fc87f0a
commit a9989ad8fa

View File

@ -57,6 +57,10 @@ func DebugBody(body []byte) {
Debug(jsonResponse, "--API RESPONSE--") Debug(jsonResponse, "--API RESPONSE--")
} }
func Print(v interface{}) {
fmt.Println("%#v", v)
}
func Sep() { func Sep() {
separator := "════════════════════════════════════════════════" separator := "════════════════════════════════════════════════"
fmt.Println(separator) fmt.Println(separator)