Branch | Status | Coverage |
---|---|---|
master |
The Hyperscale server library provides a simple server over Fiber.
package main
import (
"github.com/hyperscale-stack/server"
)
func main() {
app := server.New()
app.AddController(&myController{})
app.Listen(":3000")
}
Hyperscale Server is licensed under the MIT license.