mirror of
https://github.com/get-drexa/drive.git
synced 2026-02-02 17:51:18 +00:00
10 lines
198 B
Go
10 lines
198 B
Go
package drive
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrDriveNotFound = errors.New("drive not found")
|
|
ErrDriveForbidden = errors.New("drive forbidden")
|
|
ErrDriveNotAllowed = errors.New("drive not allowed")
|
|
)
|