mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-19 20:26:26 +08:00
8 lines
91 B
Go
8 lines
91 B
Go
![]() |
package errs
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
PermissionDenied = errors.New("permission denied")
|
||
|
)
|