aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorNathan Skrzypczak <nathan.skrzypczak@gmail.com>2022-07-07 16:57:45 +0200
committerNathan Skrzypczak <nathan.skrzypczak@gmail.com>2022-08-02 16:14:00 +0200
commit67cea0df30f7ef348e265c9326f7a9f15ba26240 (patch)
treeda516e461f93d08a3806b80a55655a8943ad96f5 /README.md
parent278cd54dc581167fcd206d725c04ba69b3109c25 (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 'README.md')
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index f58eb02..e1ba19a 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
-⚠️ The GoVPP project is changing hosting :
-- its import URL will move to [go.fd.io/govpp](https://go.fd.io/govpp)
-- its repository location will move to [https://github.com/FDio/govpp](https://github.com/FDio/govpp).
+⚠️ The GoVPP project has changed URL :
+- the import URL has moved to [go.fd.io/govpp](https://go.fd.io/govpp)
+- the repository location has moved to [https://github.com/FDio/govpp](https://github.com/FDio/govpp).
-The last version archived on [git.fd.io/govpp.git](https://git.fd.io/govpp) will be `v0.5.0`.
+The last version archived on [git.fd.io/govpp.git](https://git.fd.io/govpp) is `v0.5.0`.
# GoVPP
-[![stable](https://img.shields.io/github/v/tag/fdio/govpp.svg?label=release&logo=github)](https://github.com/ligato/vpp-agent/releases/latest) [![PkgGoDev](https://pkg.go.dev/badge/git.fd.io/govpp.git)](https://pkg.go.dev/git.fd.io/govpp.git)
+[![stable](https://img.shields.io/github/v/tag/fdio/govpp.svg?label=release&logo=github)](https://github.com/ligato/vpp-agent/releases/latest) [![PkgGoDev](https://pkg.go.dev/badge/go.fd.io/govpp)](https://pkg.go.dev/go.fd.io/govpp)
The GoVPP repository contains a Go client library for interacting with the VPP,
generator of Go bindings for the VPP binary API and various other tooling for VPP.
@@ -50,9 +50,9 @@ package main
import (
"log"
- "git.fd.io/govpp.git"
- "git.fd.io/govpp.git/binapi/interfaces"
- "git.fd.io/govpp.git/binapi/vpe"
+ "go.fd.io/govpp"
+ "go.fd.io/govpp/binapi/interfaces"
+ "go.fd.io/govpp/binapi/vpe"
)
func main() {
@@ -91,8 +91,8 @@ import (
"context"
"log"
- "git.fd.io/govpp.git"
- "git.fd.io/govpp.git/binapi/vpe"
+ "go.fd.io/govpp"
+ "go.fd.io/govpp/binapi/vpe"
)
func main() {