示例#1
0
文件: main.go 项目: freeformz/grb
func nothing(c martini.Context) {
	c.Next()
}
示例#2
0
func (g *GracefulShutdown) Handler(c martini.Context) {
	g.wg.Add(1)
	c.Next()
	g.wg.Done()
}