mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-10 07:44:25 +00:00
8 lines
72 B
Go
8 lines
72 B
Go
|
package manners
|
||
|
|
||
|
type waitGroup interface {
|
||
|
Add(int)
|
||
|
Done()
|
||
|
Wait()
|
||
|
}
|