mirror of
https://github.com/sorenisanerd/gotty.git
synced 2025-04-04 18:00:28 +00:00
8 lines
72 B
Go
8 lines
72 B
Go
package manners
|
|
|
|
type waitGroup interface {
|
|
Add(int)
|
|
Done()
|
|
Wait()
|
|
}
|