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

import (
	"github.com/valyala/fasthttp"
	"toast.cafe/x/brpaste/v2/template"
)

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