Example #1
0
// Run statisfies the Statement Interface
func (i *GoStatement) Run(s *ponyExpress.StoreFront) {
	s.Add(1)
	go func() {
		i.Statement.Run(s)
		s.Done()
	}()
}