mirror of
https://github.com/activecm/rita
synced 2026-06-08 13:02:45 +00:00
Update Go module name
Co-Authored-By: Liza Tsibur <liza@activecountermeasures.com>
This commit is contained in:
@@ -8,10 +8,10 @@ import (
|
||||
"runtime"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"golang.org/x/sync/errgroup"
|
||||
"golang.org/x/time/rate"
|
||||
|
||||
@@ -4,7 +4,7 @@ import (
|
||||
"log"
|
||||
"testing"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/rita/config"
|
||||
|
||||
"github.com/joho/godotenv"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
+2
-2
@@ -7,8 +7,8 @@ import (
|
||||
"slices"
|
||||
"sort"
|
||||
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/montanaflynn/stats"
|
||||
)
|
||||
|
||||
@@ -8,9 +8,9 @@ import (
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/progressbar"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/progressbar"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/charmbracelet/bubbles/progress"
|
||||
|
||||
+2
-2
@@ -4,8 +4,8 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/google/go-github/github"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
+2
-2
@@ -8,8 +8,8 @@ import (
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/joho/godotenv"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
+2
-2
@@ -7,8 +7,8 @@ import (
|
||||
"regexp"
|
||||
"strings"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/manifoldco/promptui"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
+2
-2
@@ -4,8 +4,8 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
+7
-7
@@ -14,13 +14,13 @@ import (
|
||||
"time"
|
||||
"unicode"
|
||||
|
||||
"github.com/activecm/ritav2/analysis"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/importer"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/modifier"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/analysis"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/importer"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/modifier"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
||||
+4
-4
@@ -4,9 +4,9 @@ import (
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
iofs "io/fs"
|
||||
"os"
|
||||
@@ -15,7 +15,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/importer"
|
||||
"github.com/activecm/rita/importer"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
+2
-2
@@ -6,8 +6,8 @@ import (
|
||||
"os"
|
||||
"strconv"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/charmbracelet/lipgloss"
|
||||
"github.com/charmbracelet/lipgloss/table"
|
||||
|
||||
+3
-3
@@ -6,9 +6,9 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
+2
-2
@@ -4,8 +4,8 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
||||
+4
-4
@@ -6,10 +6,10 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/util"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ import (
|
||||
"os"
|
||||
"sync"
|
||||
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/hjson/hjson-go/v4"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
@@ -7,7 +7,7 @@ import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/joho/godotenv"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package config
|
||||
|
||||
import (
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"net"
|
||||
)
|
||||
|
||||
+2
-2
@@ -9,8 +9,8 @@ import (
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/logger"
|
||||
|
||||
clickhouse "github.com/ClickHouse/clickhouse-go/v2"
|
||||
driver "github.com/ClickHouse/clickhouse-go/v2/lib/driver"
|
||||
|
||||
+3
-3
@@ -8,9 +8,9 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
clickhouse "github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
+2
-2
@@ -5,8 +5,8 @@ import (
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
)
|
||||
|
||||
+2
-2
@@ -7,8 +7,8 @@ import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/logger"
|
||||
|
||||
clickhouse "github.com/ClickHouse/clickhouse-go/v2"
|
||||
driver "github.com/ClickHouse/clickhouse-go/v2/lib/driver"
|
||||
|
||||
@@ -9,9 +9,9 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/joho/godotenv"
|
||||
|
||||
@@ -12,9 +12,9 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
clickhouse "github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
@@ -10,7 +10,7 @@ import (
|
||||
"sync"
|
||||
"testing"
|
||||
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
@@ -8,8 +8,8 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"golang.org/x/time/rate"
|
||||
|
||||
+2
-2
@@ -4,8 +4,8 @@ import (
|
||||
"context"
|
||||
"sync"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/logger"
|
||||
|
||||
clickhouse "github.com/ClickHouse/clickhouse-go/v2"
|
||||
driver "github.com/ClickHouse/clickhouse-go/v2/lib/driver"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
module github.com/activecm/ritav2
|
||||
module github.com/activecm/rita
|
||||
|
||||
go 1.22.3
|
||||
|
||||
|
||||
+6
-6
@@ -6,12 +6,12 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/importer/zeektypes"
|
||||
zerolog "github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/progressbar"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/importer/zeektypes"
|
||||
zerolog "github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/progressbar"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
|
||||
+4
-4
@@ -7,10 +7,10 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/importer/zeektypes"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/importer/zeektypes"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
+6
-6
@@ -8,12 +8,12 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/importer/zeektypes"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/progressbar"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/importer/zeektypes"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/progressbar"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
|
||||
@@ -11,12 +11,12 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/importer/zeektypes"
|
||||
zerolog "github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/progressbar"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/importer/zeektypes"
|
||||
zerolog "github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/progressbar"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/charmbracelet/bubbles/progress"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
+2
-2
@@ -11,8 +11,8 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
zerolog "github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/util"
|
||||
zerolog "github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
jsoniter "github.com/json-iterator/go"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
@@ -6,8 +6,8 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/importer/zeektypes"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/importer/zeektypes"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
+6
-6
@@ -9,12 +9,12 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/importer/zeektypes"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/progressbar"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/importer/zeektypes"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/progressbar"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
|
||||
@@ -8,8 +8,8 @@ import (
|
||||
"strconv"
|
||||
"testing"
|
||||
|
||||
"github.com/activecm/ritav2/modifier"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/modifier"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
@@ -7,11 +7,11 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/analysis"
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/analysis"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
@@ -6,11 +6,11 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/analysis"
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/progressbar"
|
||||
"github.com/activecm/rita/analysis"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/progressbar"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/charmbracelet/bubbles/progress"
|
||||
|
||||
@@ -4,10 +4,10 @@ import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
i "github.com/activecm/ritav2/importer"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
i "github.com/activecm/rita/importer"
|
||||
|
||||
"reflect"
|
||||
|
||||
|
||||
@@ -10,9 +10,9 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/joho/godotenv"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
@@ -5,7 +5,7 @@ import (
|
||||
"errors"
|
||||
"testing"
|
||||
|
||||
"github.com/activecm/ritav2/importer"
|
||||
"github.com/activecm/rita/importer"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
@@ -7,11 +7,11 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
i "github.com/activecm/ritav2/importer"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
i "github.com/activecm/rita/importer"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
fp "path/filepath"
|
||||
|
||||
|
||||
@@ -7,10 +7,10 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
@@ -5,10 +5,10 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/google/uuid"
|
||||
|
||||
@@ -6,10 +6,10 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
@@ -5,9 +5,9 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
@@ -6,10 +6,10 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
@@ -8,9 +8,9 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/spf13/afero"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
@@ -13,9 +13,9 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/dchest/siphash"
|
||||
"github.com/spf13/afero"
|
||||
|
||||
@@ -9,10 +9,10 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/joho/godotenv"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/rita/config"
|
||||
|
||||
"github.com/rs/zerolog"
|
||||
"github.com/rs/zerolog/pkgerrors"
|
||||
|
||||
@@ -6,11 +6,11 @@ import (
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/analysis"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/analysis"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/google/uuid"
|
||||
|
||||
@@ -5,10 +5,10 @@ import (
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/logger"
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/logger"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
"github.com/joho/godotenv"
|
||||
"github.com/urfave/cli/v2"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/charmbracelet/bubbles/list"
|
||||
)
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
"github.com/charmbracelet/bubbles/list"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ import (
|
||||
"fmt"
|
||||
"io"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/rita/config"
|
||||
|
||||
"github.com/charmbracelet/bubbles/list"
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
|
||||
+2
-2
@@ -7,8 +7,8 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/ClickHouse/clickhouse-go/v2"
|
||||
"github.com/charmbracelet/bubbles/list"
|
||||
|
||||
+2
-2
@@ -9,8 +9,8 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/charmbracelet/bubbles/textinput"
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
|
||||
@@ -6,8 +6,8 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
"github.com/charmbracelet/bubbles/list"
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/util"
|
||||
"github.com/activecm/rita/util"
|
||||
|
||||
"github.com/charmbracelet/bubbles/viewport"
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package viewer_test
|
||||
|
||||
import (
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
+2
-2
@@ -8,8 +8,8 @@ import (
|
||||
"slices"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
|
||||
"github.com/charmbracelet/bubbles/key"
|
||||
"github.com/charmbracelet/bubbles/list"
|
||||
|
||||
@@ -9,10 +9,10 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/activecm/ritav2/cmd"
|
||||
"github.com/activecm/ritav2/config"
|
||||
"github.com/activecm/ritav2/database"
|
||||
"github.com/activecm/ritav2/viewer"
|
||||
"github.com/activecm/rita/cmd"
|
||||
"github.com/activecm/rita/config"
|
||||
"github.com/activecm/rita/database"
|
||||
"github.com/activecm/rita/viewer"
|
||||
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
"github.com/joho/godotenv"
|
||||
|
||||
Reference in New Issue
Block a user