The best way to see what routes have been mapped is to log the Handler itself.
Put this after your mapping code:
log.Println(“Try some of these routes:")
log.Printf("%s", goweb.DefaultHttpHandler())
That should make it clear what has been mapped.
Alternatively, if you specify a `Path() string` method on your controller, it will use that to decide which path to map to.
Mat