2015-08-24 19:39:06 +09:00

8 lines
72 B
Go

package manners
type waitGroup interface {
Add(int)
Done()
Wait()
}