yarf
yarf copied to clipboard
Yet Another REST Framework
Results
2
yarf issues
Sort by
recently updated
recently updated
newest added
``` package main import "github.com/yarf-framework/yarf" type Hello struct { yarf.Resource } func (h *Hello) Get(c *yarf.Context) error { name := c.Param("name") c.Render("Hello, " + name) return nil } func main()...
- Reduce allocation? - Try different route search methods.
enhancement
help wanted