예제 #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()
}