diff options
Diffstat (limited to 'internal/commands/helpers.go')
-rw-r--r-- | internal/commands/helpers.go | 8 |
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 +} + |