feat(errorx): add time out err

This commit is contained in:
bandl 2021-09-28 20:29:57 +08:00
parent 70319ae2b1
commit 05bd410900
1 changed files with 5 additions and 0 deletions

5
pkg/errorx/time.go Normal file
View File

@ -0,0 +1,5 @@
package errorx
func TimeOutErr() error {
return New("time out err")
}