1package playlistfs
2
3import (
4 "errors"
5)
6
7var (
8 ErrNoCtl = errors.New("not a playctl command")
9 ErrNoVol = errors.New("not a playvol command")
10
11 ErrTooFewArgs = errors.New("too few arguments supplied")
12 ErrTooManyArgs = errors.New("too many arguments supplied")
13
14 ErrInvalidVol = errors.New("invalid volume level")
15)