From 2a9fe868e710877f1cbe41dfc8e576ffcc273289 Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 6 Mar 2026 14:11:08 +0000 Subject: [PATCH] refactor: swap pkg/framework imports to pkg/core Co-Authored-By: Virgil --- config.go | 2 +- service.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 4a6458e..5d13349 100644 --- a/config.go +++ b/config.go @@ -19,7 +19,7 @@ import ( coreerr "forge.lthn.ai/core/go-log" coreio "forge.lthn.ai/core/go-io" - core "forge.lthn.ai/core/go/pkg/framework/core" + core "forge.lthn.ai/core/go/pkg/core" "github.com/spf13/viper" "gopkg.in/yaml.v3" ) diff --git a/service.go b/service.go index 1192d06..5996789 100644 --- a/service.go +++ b/service.go @@ -5,7 +5,7 @@ import ( coreerr "forge.lthn.ai/core/go-log" "forge.lthn.ai/core/go-io" - core "forge.lthn.ai/core/go/pkg/framework/core" + core "forge.lthn.ai/core/go/pkg/core" ) // Service wraps Config as a framework service with lifecycle support.