refactor: swap pkg/framework imports to pkg/core
Some checks failed
Security Scan / security (push) Failing after 7s
Test / test (push) Failing after 19s

Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
Snider 2026-03-06 14:11:09 +00:00
parent 7468c38906
commit c7959ecfef
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ import (
"github.com/ProtonMail/go-crypto/openpgp/packet"
core "forge.lthn.ai/core/go-log"
framework "forge.lthn.ai/core/go/pkg/framework/core"
framework "forge.lthn.ai/core/go/pkg/core"
)
// Service implements the framework.Crypt interface using OpenPGP.

View file

@ -4,7 +4,7 @@ import (
"bytes"
"testing"
framework "forge.lthn.ai/core/go/pkg/framework/core"
framework "forge.lthn.ai/core/go/pkg/core"
"github.com/stretchr/testify/assert"
)