mirror of
https://github.com/tickstep/aliyunpan.git
synced 2025-01-23 22:42:15 +08:00
8 lines
81 B
Go
8 lines
81 B
Go
|
package filelocker
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrTimeout = errors.New("timeout")
|
||
|
)
|