This repository has been archived on 2025-10-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
api/src/handlers/index/index.go
2023-03-09 09:01:56 +03:00

10 lines
172 B
Go

package index
import (
"github.com/valyala/fasthttp"
)
func IndexHandler(ctx *fasthttp.RequestCtx) {
ctx.SetContentType("text/html")
ctx.WriteString("Hello World!")
}