go fmt: add go:build tags

This is the new style for build tags. The old +build format is
deprecated.
This commit is contained in:
Simon Ser 2021-09-09 10:07:37 +02:00
parent d1181b3e7a
commit a4a9b7e934
2 changed files with 2 additions and 0 deletions

View file

@ -1,3 +1,4 @@
//go:build !go1.16
// +build !go1.16
package soju

View file

@ -1,3 +1,4 @@
//go:build go1.16
// +build go1.16
package soju