Renamed module

This commit is contained in:
2024-03-22 15:08:24 +01:00
parent f65c34ea78
commit 5fdb9a883d
16 changed files with 80 additions and 80 deletions

View File

@ -3,13 +3,13 @@ package main
import (
"time"
"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 {
ticker := time.NewTicker(time.Second)
for {