Skip to content

Commit 832044e

Browse files
committed
Rename module to github.com/RiskIdent/NetFlowMap
1 parent 4ae5904 commit 832044e

18 files changed

Lines changed: 43 additions & 43 deletions

File tree

cmd/netflowmap/main.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ import (
1414
"syscall"
1515
"time"
1616

17-
"github.com/kai/netflowmap/internal/auth"
18-
"github.com/kai/netflowmap/internal/config"
19-
"github.com/kai/netflowmap/internal/flowstore"
20-
"github.com/kai/netflowmap/internal/fortigate"
21-
"github.com/kai/netflowmap/internal/geoip"
22-
"github.com/kai/netflowmap/internal/logging"
23-
"github.com/kai/netflowmap/internal/netflow"
24-
"github.com/kai/netflowmap/internal/web"
17+
"github.com/RiskIdent/NetFlowMap/internal/auth"
18+
"github.com/RiskIdent/NetFlowMap/internal/config"
19+
"github.com/RiskIdent/NetFlowMap/internal/flowstore"
20+
"github.com/RiskIdent/NetFlowMap/internal/fortigate"
21+
"github.com/RiskIdent/NetFlowMap/internal/geoip"
22+
"github.com/RiskIdent/NetFlowMap/internal/logging"
23+
"github.com/RiskIdent/NetFlowMap/internal/netflow"
24+
"github.com/RiskIdent/NetFlowMap/internal/web"
2525
"golang.org/x/term"
2626
)
2727

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kai/netflowmap
1+
module github.com/RiskIdent/NetFlowMap
22

33
go 1.25.3
44

internal/auth/auth.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"net/http"
66

7-
"github.com/kai/netflowmap/internal/config"
8-
"github.com/kai/netflowmap/internal/logging"
7+
"github.com/RiskIdent/NetFlowMap/internal/config"
8+
"github.com/RiskIdent/NetFlowMap/internal/logging"
99
)
1010

1111
// contextKey is a type for context keys.

internal/auth/oidc.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"time"
1111

1212
"github.com/coreos/go-oidc/v3/oidc"
13-
"github.com/kai/netflowmap/internal/config"
14-
"github.com/kai/netflowmap/internal/logging"
13+
"github.com/RiskIdent/NetFlowMap/internal/config"
14+
"github.com/RiskIdent/NetFlowMap/internal/logging"
1515
"golang.org/x/oauth2"
1616
)
1717

internal/auth/users.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"sync"
88

9-
"github.com/kai/netflowmap/internal/logging"
9+
"github.com/RiskIdent/NetFlowMap/internal/logging"
1010
"golang.org/x/crypto/bcrypt"
1111
"gopkg.in/yaml.v3"
1212
)

internal/flowstore/store.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"sync"
99
"time"
1010

11-
"github.com/kai/netflowmap/internal/geoip"
12-
"github.com/kai/netflowmap/internal/logging"
13-
"github.com/kai/netflowmap/internal/netflow"
11+
"github.com/RiskIdent/NetFlowMap/internal/geoip"
12+
"github.com/RiskIdent/NetFlowMap/internal/logging"
13+
"github.com/RiskIdent/NetFlowMap/internal/netflow"
1414
)
1515

1616
// AggregatedFlow represents a flow with geographic information and aggregated stats.

internal/flowstore/store_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/kai/netflowmap/internal/netflow"
8+
"github.com/RiskIdent/NetFlowMap/internal/netflow"
99
)
1010

1111
func TestNewStore(t *testing.T) {

internal/fortigate/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sync"
77
"time"
88

9-
"github.com/kai/netflowmap/internal/logging"
9+
"github.com/RiskIdent/NetFlowMap/internal/logging"
1010
)
1111

1212
// Cache stores FortiGate address objects with automatic refresh.

internal/fortigate/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/kai/netflowmap/internal/logging"
13+
"github.com/RiskIdent/NetFlowMap/internal/logging"
1414
)
1515

1616
// Client provides access to the FortiGate REST API.

internal/fortigate/manager.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package fortigate
33
import (
44
"sync"
55

6-
"github.com/kai/netflowmap/internal/config"
7-
"github.com/kai/netflowmap/internal/logging"
6+
"github.com/RiskIdent/NetFlowMap/internal/config"
7+
"github.com/RiskIdent/NetFlowMap/internal/logging"
88
)
99

1010
// Manager manages multiple FortiGate caches, one per configured source.

0 commit comments

Comments
 (0)