Renamed module

This commit is contained in:
Eduard Urbach 2024-03-22 15:08:24 +01:00
parent ce209e79ed
commit d1e052d352
Signed by: eduard
GPG key ID: 49226B848C78F6C8
16 changed files with 80 additions and 80 deletions

View file

@ -1,13 +1,13 @@
package main
import (
"git.akyoto.dev/go/server"
"git.akyoto.dev/go/web"
)
func main() {
s := server.New()
s := web.NewServer()
s.Get("/", func(ctx server.Context) error {
s.Get("/", func(ctx web.Context) error {
return ctx.String("Hello")
})