var (
ErrDir = errors.New("directory to backup is missing")
ErrDirBck = errors.New("directory to save tar backup files is missing")
ErrStructNil = errors.New("structure cannot be nil")
ErrPathEmpty = errors.New("path cannot be empty")
ErrTarget = errors.New("unknown target")
)
type Scan struct {
Path string// directory to scan Delete bool// delete any detected orphan files Human bool// humanise values shown by print output M database.IDs// UUID values fetched from the database}