mirror of
https://github.com/yudai/gotty.git
synced 2025-09-22 05:50:48 +02:00
7 lines
72 B
Go
7 lines
72 B
Go
package manners
|
|
|
|
type waitGroup interface {
|
|
Add(int)
|
|
Done()
|
|
Wait()
|
|
}
|