refactor: move config to internal

This commit is contained in:
vmfunc
2026-01-03 00:47:40 -08:00
parent 28588fe37c
commit 539122ac4e
4 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ package main
import ( import (
"github.com/charmbracelet/log" "github.com/charmbracelet/log"
"github.com/dropalldatabases/sif" "github.com/dropalldatabases/sif"
"github.com/dropalldatabases/sif/pkg/config" "github.com/dropalldatabases/sif/internal/config"
// Register framework detectors // Register framework detectors
_ "github.com/dropalldatabases/sif/pkg/scan/frameworks/detectors" _ "github.com/dropalldatabases/sif/pkg/scan/frameworks/detectors"

View File

@@ -15,7 +15,7 @@ package sif
import ( import (
"testing" "testing"
"github.com/dropalldatabases/sif/pkg/config" "github.com/dropalldatabases/sif/internal/config"
) )
// mockResult is a test implementation of ScanResult // mockResult is a test implementation of ScanResult