From a818b892f4a1c1e93396d057c453ed67395c8efb Mon Sep 17 00:00:00 2001 From: James Tombleson Date: Thu, 9 May 2024 19:09:32 -0700 Subject: [PATCH] domain path update for source const --- internal/services/cron/collectors.go | 2 +- internal/services/cron/collectors_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/services/cron/collectors.go b/internal/services/cron/collectors.go index 4d4a93d..9bae29d 100644 --- a/internal/services/cron/collectors.go +++ b/internal/services/cron/collectors.go @@ -4,7 +4,7 @@ import ( "log" "time" - "git.jamestombleson.com/jtom38/newsbot-api/internal/domain" + "git.jamestombleson.com/jtom38/newsbot-api/domain" "git.jamestombleson.com/jtom38/newsbot-api/internal/services/input" ) diff --git a/internal/services/cron/collectors_test.go b/internal/services/cron/collectors_test.go index 090d12d..5bd12ae 100644 --- a/internal/services/cron/collectors_test.go +++ b/internal/services/cron/collectors_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "git.jamestombleson.com/jtom38/newsbot-api/internal/domain" + "git.jamestombleson.com/jtom38/newsbot-api/domain" "git.jamestombleson.com/jtom38/newsbot-api/internal/services" "git.jamestombleson.com/jtom38/newsbot-api/internal/services/cron" )