diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2022-07-07 16:57:45 +0200 |
---|---|---|
committer | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2022-08-02 16:14:00 +0200 |
commit | 67cea0df30f7ef348e265c9326f7a9f15ba26240 (patch) | |
tree | da516e461f93d08a3806b80a55655a8943ad96f5 /codec | |
parent | 278cd54dc581167fcd206d725c04ba69b3109c25 (diff) |
Change module name to go.fd.io/govppHEADv0.6.0-alphamaster
We are changing the module name from git.fd.io/govpp.git to
go.fd.io/govpp to make repository migration easier.
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Change-Id: Idd6e0d583a92f6b82fe9adeffd026cd6b856038b
Diffstat (limited to 'codec')
-rw-r--r-- | codec/bench_test.go | 2 | ||||
-rw-r--r-- | codec/marshaler.go | 2 | ||||
-rw-r--r-- | codec/marshaler_test.go | 12 | ||||
-rw-r--r-- | codec/msg_codec.go | 2 | ||||
-rw-r--r-- | codec/msg_codec_test.go | 12 |
5 files changed, 15 insertions, 15 deletions
diff --git a/codec/bench_test.go b/codec/bench_test.go index 4b4a702..cc71390 100644 --- a/codec/bench_test.go +++ b/codec/bench_test.go @@ -18,7 +18,7 @@ package codec_test import ( "testing" - "git.fd.io/govpp.git/codec" + "go.fd.io/govpp/codec" ) var Data []byte diff --git a/codec/marshaler.go b/codec/marshaler.go index 803b0f5..26e6ba3 100644 --- a/codec/marshaler.go +++ b/codec/marshaler.go @@ -20,7 +20,7 @@ import ( "github.com/lunixbochs/struc" - "git.fd.io/govpp.git/api" + "go.fd.io/govpp/api" ) // Marshaler is the interface implemented by the binary API messages that can diff --git a/codec/marshaler_test.go b/codec/marshaler_test.go index 9600c55..2a9cb94 100644 --- a/codec/marshaler_test.go +++ b/codec/marshaler_test.go @@ -19,12 +19,12 @@ import ( "reflect" "testing" - "git.fd.io/govpp.git/api" - "git.fd.io/govpp.git/binapi/ip_types" - "git.fd.io/govpp.git/binapi/sr" - "git.fd.io/govpp.git/codec" - interfaces "git.fd.io/govpp.git/binapi/interface" - "git.fd.io/govpp.git/binapi/interface_types" + "go.fd.io/govpp/api" + "go.fd.io/govpp/binapi/ip_types" + "go.fd.io/govpp/binapi/sr" + "go.fd.io/govpp/codec" + interfaces "go.fd.io/govpp/binapi/interface" + "go.fd.io/govpp/binapi/interface_types" ) // CliInband represents VPP binary API message 'cli_inband'. diff --git a/codec/msg_codec.go b/codec/msg_codec.go index 227764d..68c495b 100644 --- a/codec/msg_codec.go +++ b/codec/msg_codec.go @@ -19,7 +19,7 @@ import ( "errors" "fmt" - "git.fd.io/govpp.git/api" + "go.fd.io/govpp/api" ) var DefaultCodec = new(MsgCodec) diff --git a/codec/msg_codec_test.go b/codec/msg_codec_test.go index c0f94da..46a6154 100644 --- a/codec/msg_codec_test.go +++ b/codec/msg_codec_test.go @@ -4,12 +4,12 @@ import ( "bytes" "testing" - "git.fd.io/govpp.git/api" - "git.fd.io/govpp.git/binapi/ip" - "git.fd.io/govpp.git/binapi/ip_types" - "git.fd.io/govpp.git/binapi/sr" - "git.fd.io/govpp.git/binapi/vpe" - "git.fd.io/govpp.git/codec" + "go.fd.io/govpp/api" + "go.fd.io/govpp/binapi/ip" + "go.fd.io/govpp/binapi/ip_types" + "go.fd.io/govpp/binapi/sr" + "go.fd.io/govpp/binapi/vpe" + "go.fd.io/govpp/codec" ) type MyMsg struct { |