summaryrefslogtreecommitdiffhomepage
path: root/http/index.go
blob: d9c42f2eaa760397dd884870736bf13a228c53ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package http

import (
	"github.com/valyala/fasthttp"
)

// Index handles the / endpoint
func Index(ctx *fasthttp.RequestCtx) {
	ctx.SuccessString("text/html", IndexTemplate()) // render template
}