Added utils.Print() to utils

main
Óscar M. Lage 2024-10-10 20:04:06 +02:00
parent 769fc87f0a
commit a9989ad8fa
1 changed files with 4 additions and 0 deletions

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)