X-Git-Url: https://gerrit.fd.io/r/gitweb?p=govpp.git;a=blobdiff_plain;f=README.md;fp=README.md;h=e1ba19ac2d8dfd40fb6df78fa1689c0a8b4d6598;hp=f58eb020a08535df129bc9040dcec55aace14dae;hb=67cea0df30f7ef348e265c9326f7a9f15ba26240;hpb=278cd54dc581167fcd206d725c04ba69b3109c25 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() {