From 67cea0df30f7ef348e265c9326f7a9f15ba26240 Mon Sep 17 00:00:00 2001 From: Nathan Skrzypczak Date: Thu, 7 Jul 2022 16:57:45 +0200 Subject: Change module name to go.fd.io/govpp 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 Change-Id: Idd6e0d583a92f6b82fe9adeffd026cd6b856038b --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'README.md') 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() { -- cgit 1.2.3-korg