mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
18 lines
220 B
Go
18 lines
220 B
Go
package main
|
|
|
|
import (
|
|
_ "embed"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
// main is the entry point for the application
|
|
func main() {
|
|
cmd := NewRootCmd()
|
|
if err := cmd.Execute(); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
os.Exit(0)
|
|
}
|