diff options
author | 2022-07-07 16:57:45 +0200 | |
---|---|---|
committer | 2022-08-02 16:14:00 +0200 | |
commit | 67cea0df30f7ef348e265c9326f7a9f15ba26240 (patch) | |
tree | da516e461f93d08a3806b80a55655a8943ad96f5 /examples/stats-client | |
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 'examples/stats-client')
-rw-r--r-- | examples/stats-client/README.md | 2 | ||||
-rw-r--r-- | examples/stats-client/stats_api.go | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/examples/stats-client/README.md b/examples/stats-client/README.md index 0a44a55..a53cf9d 100644 --- a/examples/stats-client/README.md +++ b/examples/stats-client/README.md @@ -21,7 +21,7 @@ To enable stats add following section to you VPP config: ## Running example -First build the example: `go build git.fd.io/govpp.git/examples/stats-api`. +First build the example: `go build go.fd.io/govpp/examples/stats-api`. ### Higher-level access to stats diff --git a/examples/stats-client/stats_api.go b/examples/stats-client/stats_api.go index 63ee55d..562c2f9 100644 --- a/examples/stats-client/stats_api.go +++ b/examples/stats-client/stats_api.go @@ -23,10 +23,10 @@ import ( "strings" "time" - "git.fd.io/govpp.git/adapter" - "git.fd.io/govpp.git/adapter/statsclient" - "git.fd.io/govpp.git/api" - "git.fd.io/govpp.git/core" + "go.fd.io/govpp/adapter" + "go.fd.io/govpp/adapter/statsclient" + "go.fd.io/govpp/api" + "go.fd.io/govpp/core" ) // ------------------------------------------------------------------ |