示例#1
0
func (g *ProviderGroup) Routes(
	cb func(method, path string, annotations []string)) {
	webhelp.Routes(g.mux, cb)
}
示例#2
0
文件: store.go 项目: jtolds/webhelp
func (hws handlerWithStore) Routes(
	cb func(method, path string, annotations []string)) {
	webhelp.Routes(hws.h, cb)
}
示例#3
0
文件: auth.go 项目: jtolds/cwbench
func (lr loginRequired) Routes(
	cb func(method, path string, annotations []string)) {
	webhelp.Routes(lr.h, cb)
}