diff options
Diffstat (limited to 'internal/actions/types.go')
-rw-r--r-- | internal/actions/types.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/actions/types.go b/internal/actions/types.go index 899583b..caf3dc5 100644 --- a/internal/actions/types.go +++ b/internal/actions/types.go @@ -15,6 +15,8 @@ var ( ErrAmbiguousProject = errors.New("ambiguous project reference") ErrProjectClientMismatch = errors.New("project does not belong to specified client") ErrNoRecentEntries = errors.New("no previous time entries found") + ErrArchivedClient = errors.New("client is archived") + ErrArchivedProject = errors.New("project is archived") ) // TimerSession represents an active or completed time tracking session |