mirror of
https://github.com/MickMake/GoSungrow.git
synced 2025-03-17 21:32:19 +01:00
17 lines
200 B
Go
17 lines
200 B
Go
package main
|
|
|
|
import (
|
|
"github.com/MickMake/GoSungrow/cmd"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
|
|
func main() {
|
|
err := cmd.Execute()
|
|
if err != nil {
|
|
_, _ = fmt.Fprintf(os.Stderr, "ERROR: %s\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|