iris/_examples/project/main.go

17 lines
183 B
Go
Raw Normal View History

package main
import (
"fmt"
"os"
"github.com/username/project/cmd"
)
func main() {
2022-04-10 00:25:19 +02:00
app := cmd.New()
if err := app.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}