コード例 #1
0
ファイル: main.go プロジェクト: freeformz/grb
func nothing(c martini.Context) {
	c.Next()
}
コード例 #2
0
ファイル: gracefulshutdown.go プロジェクト: freeformz/grb
func (g *GracefulShutdown) Handler(c martini.Context) {
	g.wg.Add(1)
	c.Next()
	g.wg.Done()
}