feat: initial commit

This commit is contained in:
NotAShelf 2023-03-09 09:01:56 +03:00
commit 68832eaf35
No known key found for this signature in database
GPG key ID: 419DBDD3228990BE
4 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package index
import (
"github.com/valyala/fasthttp"
)
func IndexHandler(ctx *fasthttp.RequestCtx) {
ctx.SetContentType("text/html")
ctx.WriteString("Hello World!")
}