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