diff --git a/cmd/main.go b/cmd/main.go index 28acc49..90114fc 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -17,9 +17,9 @@ func main () { response, err := core.GetStatistics(path) if err != nil { - fmt.Printf("Path %s is not found\n", path) + fmt.Printf("ERROR: path \"%s\" is not found!!!\n", path) + } else { + fmt.Print(internal.GetTable(response.Items)) } - - fmt.Print(internal.GetTable(response.Items)) } }