Files
sonr/cmd/hway/main.go
T

18 lines
220 B
Go
Raw Normal View History

package main
import (
_ "embed"
"fmt"
2024-12-05 20:36:58 -05:00
"os"
)
2024-12-05 20:36:58 -05:00
// main is the entry point for the application
func main() {
cmd := NewRootCmd()
if err := cmd.Execute(); err != nil {
fmt.Println(err)
2024-12-05 20:36:58 -05:00
os.Exit(1)
}
os.Exit(0)
}