$ cat src/hello/main.go package main import ( "fmt" "net/http" "github.com/zenazn/goji" "github.com/zenazn/goji/web" ) func hello(c web.C, w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hello, %s!", c.URLParams["name"]) } func main() { goji.Get("/hello/:name", hello) goji.Serve() } $ cat vendor/manifest { "version": 0, "dependencies": [ { "importpath": "github.com/goji/param", "reposito