Skip to content

Instantly share code, notes, and snippets.

@santoshanand
Last active November 2, 2017 15:58
Show Gist options
  • Save santoshanand/f9faebd301276654ff89228f299004b9 to your computer and use it in GitHub Desktop.
Save santoshanand/f9faebd301276654ff89228f299004b9 to your computer and use it in GitHub Desktop.
package main
import (
"github.com/kataras/iris"
)
func main() {
app := iris.Default()
app.Get("/", func(context iris.Context) {
context.WriteString("Welcome to Iris Go Framework!")
})
app.Run(iris.Addr(":8080"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment