blob: 124e1729ff1da08663361df5360172d7be3dfe8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
package http
import (
"github.com/valyala/fasthttp"
"toast.cafe/x/brpaste/v2/template"
)
func Index(ctx *fasthttp.RequestCtx) {
ctx.SuccessString("text/html", template.Index()) // render template
}
|