format: reformat code with go 1.17
There was a change in how build tags are formatted. Use this as new reference. Link: https://go.dev/doc/go1.17#gofmt Signed-off-by: Robin Jarry <robin@jarry.cc>
This commit is contained in:
parent
6857ab7a71
commit
b331371a65
|
@ -1,4 +1,5 @@
|
|||
//+build !linux
|
||||
//go:build !linux
|
||||
// +build !linux
|
||||
|
||||
package lib
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//+build linux
|
||||
//go:build linux
|
||||
// +build linux
|
||||
|
||||
package lib
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//+build notmuch
|
||||
//go:build notmuch
|
||||
// +build notmuch
|
||||
|
||||
package worker
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//+build notmuch
|
||||
//go:build notmuch
|
||||
// +build notmuch
|
||||
|
||||
package notmuch
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//+build notmuch
|
||||
//go:build notmuch
|
||||
// +build notmuch
|
||||
|
||||
package notmuch
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//+build notmuch
|
||||
//go:build notmuch
|
||||
// +build notmuch
|
||||
|
||||
package lib
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//+build notmuch
|
||||
//go:build notmuch
|
||||
// +build notmuch
|
||||
|
||||
package lib
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//+build notmuch
|
||||
//go:build notmuch
|
||||
// +build notmuch
|
||||
|
||||
package notmuch
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
//+build notmuch
|
||||
//go:build notmuch
|
||||
// +build notmuch
|
||||
|
||||
package notmuch
|
||||
|
||||
|
|
Loading…
Reference in New Issue