16 lines
185 B
Go
Raw Normal View History

2024-03-12 19:35:19 +00:00
package main
import (
"git.akyoto.dev/go/server"
)
func main() {
s := server.New()
s.Get("/", func(ctx server.Context) error {
return ctx.String("Hello")
})
2024-03-12 21:31:45 +00:00
s.Run(":8080")
2024-03-12 19:35:19 +00:00
}