Establish initial Go application skeleton

This commit is contained in:
2026-05-29 16:52:02 +00:00
parent 05b56d6ea6
commit e5cd23de48
9 changed files with 163 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
package main
import (
"context"
"fmt"
"os"
"gitea.maximumdirect.net/eric/weatherreporter/internal/cli"
)
func main() {
if err := cli.Run(context.Background(), os.Args[1:], os.Stdout, os.Stderr); err != nil {
fmt.Fprintf(os.Stderr, "weatherreporter: %v\n", err)
os.Exit(1)
}
}