Update import paths to use new module path hub.krkn.tech/KrakenTech/crowsnest across the project

This commit is contained in:
Evan Hosinski
2026-06-04 12:45:39 -04:00
parent f23bd04114
commit daf54bb8c1
22 changed files with 90 additions and 72 deletions
+4 -3
View File
@@ -1,17 +1,18 @@
package export
import (
"crowsnest/internal/files"
"crowsnest/internal/sqlite"
"encoding/json"
"encoding/xml"
"errors"
"fmt"
"gopkg.in/yaml.v3"
"os"
"sort"
"strings"
"time"
"gopkg.in/yaml.v3"
"hub.krkn.tech/KrakenTech/crowsnest/internal/files"
"hub.krkn.tech/KrakenTech/crowsnest/internal/sqlite"
)
func WriteCredsToFile(creds []sqlite.User, outputFile string, fileType files.FileType) error {
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"strings"
"testing"
"crowsnest/internal/sqlite"
"hub.krkn.tech/KrakenTech/crowsnest/internal/sqlite"
)
func TestDehashedResultGreppableUsesSpaceSeparatedNonEmptyTokens(t *testing.T) {
+4 -3
View File
@@ -1,13 +1,14 @@
package export
import (
"crowsnest/internal/files"
"crowsnest/internal/sqlite"
"encoding/json"
"encoding/xml"
"fmt"
"gopkg.in/yaml.v3"
"os"
"gopkg.in/yaml.v3"
"hub.krkn.tech/KrakenTech/crowsnest/internal/files"
"hub.krkn.tech/KrakenTech/crowsnest/internal/sqlite"
)
func WriteIStringToFile(iString sqlite.IString, outputFile string, fileType files.FileType) error {