1
0
mirror of https://github.com/fumiama/slowdo.git synced 2026-06-07 17:00:26 +08:00
This commit is contained in:
源文雨
2024-10-01 15:43:19 +09:00
parent 068653d004
commit 8e5724aac1
3 changed files with 68 additions and 0 deletions

7
errors.go Normal file
View File

@@ -0,0 +1,7 @@
package slowdo
import "errors"
var (
ErrWaitTimeTooShort = errors.New("wait time too short")
)