diff options
author | T <t@tjp.lol> | 2025-08-07 13:11:24 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-07 23:14:00 -0600 |
commit | a7ee7f7280d593481501446008acc05e32abcd22 (patch) | |
tree | f056bd9c72934a9e04aa5af872e836bc43d3739f /internal/actions/actions.go | |
parent | 4843deb9cfa6d91282c5124ec025c636137e9e94 (diff) |
entry edit and delete
Diffstat (limited to 'internal/actions/actions.go')
-rw-r--r-- | internal/actions/actions.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/actions/actions.go b/internal/actions/actions.go index 727b474..d3e1460 100644 --- a/internal/actions/actions.go +++ b/internal/actions/actions.go @@ -12,6 +12,7 @@ type Actions interface { PunchIn(ctx context.Context, client, project, description string, billableRate *float64) (*TimerSession, error) PunchInMostRecent(ctx context.Context, description string, billableRate *float64) (*TimerSession, error) PunchOut(ctx context.Context) (*TimerSession, error) + EditEntry(ctx context.Context, entry queries.TimeEntry) error // Client operations CreateClient(ctx context.Context, name, email string, billableRate *float64) (*queries.Client, error) |