1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

add a new example

This commit is contained in:
kataras
2022-06-04 02:42:33 +03:00
parent c201b6ccc8
commit c6911851f1
10 changed files with 483 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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)
}
}