Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.77 KB

README.md

File metadata and controls

32 lines (20 loc) · 1.77 KB

Hyperscale Server Last release Documentation

Go Report Card

Branch Status Coverage
master Build Status Coveralls

The Hyperscale server library provides a simple server over Fiber.

Example

package main

import (
    "github.com/hyperscale-stack/server"
)

func main() {
    app := server.New()

    app.AddController(&myController{})

    app.Listen(":3000")
}

License

Hyperscale Server is licensed under the MIT license.