mirror of
https://github.com/fumiama/slowdo.git
synced 2026-06-04 23:40:30 +08:00
8 lines
98 B
Go
8 lines
98 B
Go
package slowdo
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrWaitTimeTooShort = errors.New("wait time too short")
|
|
)
|