Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 553 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 553 Bytes

Kira

Build Status Code Coverage

Kira micro framework

Example

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

    app.Get("/", func (c *kira.Context) {
        c.String("Hello, Kira :)")
    })

    app.Run()
}