fireball
fireball copied to clipboard
Go web framework with a natural feel
Results
1
fireball issues
Sort by
recently updated
recently updated
newest added
``` package main import ( "github.com/zpatrick/fireball" "net/http" ) func index(c *fireball.Context) (fireball.Response, error) { return fireball.NewResponse(200, []byte("Hello, World!"), nil), nil } func main() { indexRoute := &fireball.Route{ Path: "/user/:id", Handlers:...