mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
17 lines
183 B
Go
17 lines
183 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/username/project/cmd"
|
|
)
|
|
|
|
func main() {
|
|
app := cmd.New()
|
|
if err := app.Execute(); err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|