multi: add golang 1.17 compatible build tags

With go 1.17 a change to the build flags was implemented:
https://go.googlesource.com/proposal/+/master/design/draft-gobuild.md

The formatter now automatically adds the forward-compatible build tag
format and the linter checks for them, so we need to include them in our
code.
This commit is contained in:
Oliver Gugger
2021-08-23 10:35:48 +02:00
committed by Olaoluwa Osuntokun
parent d973cf1060
commit 0b4e03f5fc
187 changed files with 189 additions and 4 deletions

View File

@ -1,3 +1,4 @@
//go:build dev
// +build dev
package kvdb