mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
1bea8f5803
gen website examples is the first command that I should finish soon because we need it for the website's "Recipe" page. Two more html query-relative dependencies added. Former-commit-id: 04b7f8bb968cbc3c441e2a09a4aa525b10cd4aca
15 lines
259 B
Go
15 lines
259 B
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris"
|
|
"github.com/kataras/iris/context"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
app.Handle("GET", "/", func(ctx context.Context) {
|
|
ctx.HTML("<b> Hello world! </b>")
|
|
})
|
|
app.Run(iris.Addr(":8080"), iris.WithTray)
|
|
}
|