Skip to content

Commit fbaa9bd

Browse files
committed
chore: rename module path from ozgen to greenbone
1 parent 66a4d93 commit fbaa9bd

11 files changed

Lines changed: 19 additions & 19 deletions

File tree

cmd/emulator/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
package main
66

77
import (
8-
"github.com/ozgen/gvm-openapi-emulator/config"
9-
"github.com/ozgen/gvm-openapi-emulator/internal/server"
10-
"github.com/ozgen/gvm-openapi-emulator/logger"
8+
"github.com/greenbone/gvm-openapi-emulator/config"
9+
"github.com/greenbone/gvm-openapi-emulator/internal/server"
10+
"github.com/greenbone/gvm-openapi-emulator/logger"
1111
)
1212

1313
func main() {

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
package config
66

77
import (
8+
"github.com/greenbone/gvm-openapi-emulator/utils"
89
"github.com/joho/godotenv"
9-
"github.com/ozgen/gvm-openapi-emulator/utils"
1010
)
1111

1212
type RunningEnv string

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/ozgen/gvm-openapi-emulator
1+
module github.com/greenbone/gvm-openapi-emulator
22

33
go 1.24.0
44

internal/samples/model.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package samples
66

7-
import "github.com/ozgen/gvm-openapi-emulator/config"
7+
import "github.com/greenbone/gvm-openapi-emulator/config"
88

99
type Envelope struct {
1010
Status int `json:"status"`

internal/samples/sample_provider.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import (
1111
"path/filepath"
1212
"strings"
1313

14-
"github.com/ozgen/gvm-openapi-emulator/utils"
14+
"github.com/greenbone/gvm-openapi-emulator/utils"
1515
"github.com/sirupsen/logrus"
1616

17-
"github.com/ozgen/gvm-openapi-emulator/config"
17+
"github.com/greenbone/gvm-openapi-emulator/config"
1818
)
1919

2020
type SampleProvider struct {

internal/samples/sample_provider_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"path/filepath"
1010
"testing"
1111

12-
"github.com/ozgen/gvm-openapi-emulator/logger"
12+
"github.com/greenbone/gvm-openapi-emulator/logger"
1313

14-
"github.com/ozgen/gvm-openapi-emulator/config"
14+
"github.com/greenbone/gvm-openapi-emulator/config"
1515
"github.com/stretchr/testify/mock"
1616
"github.com/stretchr/testify/require"
1717
)

internal/samples/scenario_resolver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"sync"
1414
"time"
1515

16-
"github.com/ozgen/gvm-openapi-emulator/logger"
16+
"github.com/greenbone/gvm-openapi-emulator/logger"
1717
"github.com/sirupsen/logrus"
1818
)
1919

internal/server/server.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/ozgen/gvm-openapi-emulator/config"
14-
"github.com/ozgen/gvm-openapi-emulator/internal/openapi"
15-
"github.com/ozgen/gvm-openapi-emulator/internal/samples"
16-
"github.com/ozgen/gvm-openapi-emulator/logger"
17-
"github.com/ozgen/gvm-openapi-emulator/utils"
13+
"github.com/greenbone/gvm-openapi-emulator/config"
14+
"github.com/greenbone/gvm-openapi-emulator/internal/openapi"
15+
"github.com/greenbone/gvm-openapi-emulator/internal/samples"
16+
"github.com/greenbone/gvm-openapi-emulator/logger"
17+
"github.com/greenbone/gvm-openapi-emulator/utils"
1818
"github.com/sirupsen/logrus"
1919
)
2020

internal/server/server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"strings"
1414
"testing"
1515

16-
"github.com/ozgen/gvm-openapi-emulator/config"
16+
"github.com/greenbone/gvm-openapi-emulator/config"
1717
)
1818

1919
func TestNew_LoadsSpecAndBuildsRoutes(t *testing.T) {

logger/logger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"sort"
1212
"strings"
1313

14-
"github.com/ozgen/gvm-openapi-emulator/config"
14+
"github.com/greenbone/gvm-openapi-emulator/config"
1515

1616
"github.com/sirupsen/logrus"
1717
)

0 commit comments

Comments
 (0)