We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddb5c49 commit f3bcd2cCopy full SHA for f3bcd2c
1 file changed
cmd/main.go
@@ -17,9 +17,9 @@ func main () {
17
response, err := core.GetStatistics(path)
18
19
if err != nil {
20
- fmt.Printf("Path %s is not found\n", path)
+ fmt.Printf("ERROR: path \"%s\" is not found!!!\n", path)
21
+ } else {
22
+ fmt.Print(internal.GetTable(response.Items))
23
}
-
- fmt.Print(internal.GetTable(response.Items))
24
25
0 commit comments