Renamed module

This commit is contained in:
2024-03-22 15:08:24 +01:00
parent 17158235ea
commit ef6dd6885e
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")
})