X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=README.md;h=e1ba19ac2d8dfd40fb6df78fa1689c0a8b4d6598;hb=67cea0df30f7ef348e265c9326f7a9f15ba26240;hp=5581928cde14f3c75ccdecffbaccff197bd13133;hpb=151da936ea8952dd57261f2038fc2dcb78e8dcd7;p=govpp.git diff --git a/README.md b/README.md index 5581928..e1ba19a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,13 @@ +⚠️ 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) 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. @@ -43,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() { @@ -84,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() {