GoSungrow/main.go

17 lines
180 B
Go
Raw Permalink Normal View History

2022-02-10 12:55:11 +11:00
package main
import (
2022-02-22 10:56:05 +11:00
"GoSungrow/cmd"
2022-02-10 12:55:11 +11:00
"fmt"
"os"
)
2022-02-11 18:30:45 +11:00
2022-02-10 12:55:11 +11:00
func main() {
2022-12-15 21:15:24 +11:00
err := cmd.Execute()
2022-02-10 12:55:11 +11:00
if err != nil {
_, _ = fmt.Fprintf(os.Stderr, "ERROR: %s\n", err)
2022-12-15 13:04:08 +11:00
os.Exit(1)
2022-02-10 12:55:11 +11:00
}
}