mirror of
https://github.com/anotherhadi/usbguard-tui.git
synced 2026-05-11 22:02:34 +02:00
09b054cc5c
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
10 lines
227 B
Go
10 lines
227 B
Go
package guard
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("usbguard not found in PATH")
|
|
ErrPermission = errors.New("insufficient permissions to manage devices")
|
|
ErrReadOnly = errors.New("rules file is read-only")
|
|
)
|