iris/_examples/configuration/multi-environments/main.go

17 lines
186 B
Go
Raw Normal View History

2022-06-04 01:42:33 +02:00
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)
}
}