From 0b38a5b774f7a68848853a22e5d7b9049e7217e2 Mon Sep 17 00:00:00 2001 From: Matthias Loibl Date: Thu, 15 Feb 2024 12:12:36 +0100 Subject: [PATCH] Update go get buf.build in README.md The old import path stopped working. ``` go get go.buf.build/protocolbuffers/go/prometheus/prometheus go: unrecognized import path "go.buf.build/protocolbuffers/go/prometheus/prometheus": https fetch: Get "https://go.buf.build/protocolbuffers/go/prometheus/prometheus?go-get=1": dial tcp: lookup go.buf.build on 192.168.2.1:53: no such host ``` We should instead tell users to use the new import paths. Signed-off-by: Matthias Loibl --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0042793ff..023619a78 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ We are publishing our Remote Write protobuf independently at You can use that as a library: ```shell -go get go.buf.build/protocolbuffers/go/prometheus/prometheus +go get buf.build/gen/go/prometheus/prometheus/protocolbuffers/go@latest ``` This is experimental.