🚀 Web server.
12 Commits
.editorconfig | ||
.gitignore | ||
Context.go | ||
go.mod | ||
go.sum | ||
LICENSE | ||
pool.go | ||
README.md | ||
Server_test.go | ||
Server.go |
server
HTTP server.
Installation
go get git.akyoto.dev/go/server
Examples
Init:
s := server.New()
// Add your routes here.
http.ListenAndServe(":8080", s)
Static:
s.Get("/", func(ctx server.Context) error {
return ctx.String("Hello")
})
Parameter:
s.Get("/blog/:post", func(ctx server.Context) error {
return ctx.String(ctx.Get("post"))
})
Wildcard:
s.Get("/images/*file", func(ctx server.Context) error {
return ctx.String(ctx.Get("file"))
})