summaryrefslogtreecommitdiff
path: root/internal/commands/helpers.go
diff options
context:
space:
mode:
authorT <t@tjp.lol>2025-08-13 16:48:58 -0600
committerT <t@tjp.lol>2025-08-13 16:49:20 -0600
commit7d0d21ba8663ab7ff777a06f4b113337fa717ff3 (patch)
treef06d8691fd13bee6ebccfc17a08c599bd5710705 /internal/commands/helpers.go
parent5c3554c7e49abe263faf54c61e435ba1d5202d27 (diff)
go module in git.tjp.lol
Diffstat (limited to 'internal/commands/helpers.go')
-rw-r--r--internal/commands/helpers.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/internal/commands/helpers.go b/internal/commands/helpers.go
index a0c572b..cf2747d 100644
--- a/internal/commands/helpers.go
+++ b/internal/commands/helpers.go
@@ -3,8 +3,9 @@ package commands
import (
"context"
"errors"
- "punchcard/internal/actions"
- "punchcard/internal/queries"
+
+ "git.tjp.lol/punchcard/internal/actions"
+ "git.tjp.lol/punchcard/internal/queries"
)
// ErrNoActiveTimer is returned when trying to punch out but no timer is active
@@ -29,4 +30,5 @@ func findProject(ctx context.Context, q *queries.Queries, projectRef string) (qu
return queries.Project{}, err
}
return *project, nil
-} \ No newline at end of file
+}
+