diff options
author | T <t@tjp.lol> | 2025-09-29 15:04:44 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-09-30 11:40:45 -0600 |
commit | 7ba68d333bc20b5795ccfd3870546a05eee60470 (patch) | |
tree | 12dc4b017803b7d01844fd42b9e3be281cbbd986 /internal/actions/types.go | |
parent | bce8dbb58165e443902d9dae3909225ef42630c4 (diff) |
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 |