mirror of
https://github.com/MickMake/GoSungrow.git
synced 2025-03-18 22:02:18 +01:00
20 lines
223 B
Go
20 lines
223 B
Go
package main
|
|
|
|
import (
|
|
"GoSungrow/cmd"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
|
|
// https://augateway.isolarcloud.com/v1/
|
|
|
|
|
|
func main() {
|
|
err := cmd.Execute()
|
|
if err != nil {
|
|
_, _ = fmt.Fprintf(os.Stderr, "ERROR: %s\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|