🚀 Web server. 8 Commits
2023-07-22 11:04:31 +02:00
.editorconfig Renamed module 2023-07-18 21:48:38 +02:00
.gitignore Simplified gitignore 2023-07-22 11:04:31 +02:00
Context.go Improved error handling 2023-07-21 23:23:49 +02:00
go.mod Simplified go.mod 2023-07-19 12:35:28 +02:00
go.sum Added basic functionality 2023-07-18 18:02:57 +02:00
LICENSE Added basic functionality 2023-07-18 18:02:57 +02:00
pool.go Renamed module 2023-07-18 21:48:38 +02:00
README.md Renamed module 2023-07-18 21:48:38 +02:00
Server_test.go Improved error handling 2023-07-21 23:23:49 +02:00
Server.go Improved error handling 2023-07-21 23:23:49 +02:00

server

HTTP server.

Installation

go get git.akyoto.dev/go/server

Example

s := server.New()

s.Get("/", func(ctx server.Context) error {
	return ctx.String("Hello")
})

http.ListenAndServe(":8080", s)