mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-11-25 03:15:19 +08:00
8 lines
91 B
Go
8 lines
91 B
Go
|
|
package errs
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var (
|
||
|
|
PermissionDenied = errors.New("permission denied")
|
||
|
|
)
|