diff options
Diffstat (limited to 'modules/options')
-rw-r--r-- | modules/options/dynamic.go | 5 | ||||
-rw-r--r-- | modules/options/options_bindata.go | 3 | ||||
-rw-r--r-- | modules/options/static.go | 5 |
3 files changed, 8 insertions, 5 deletions
diff --git a/modules/options/dynamic.go b/modules/options/dynamic.go index ffb89df882..13fa5d6aa7 100644 --- a/modules/options/dynamic.go +++ b/modules/options/dynamic.go @@ -1,9 +1,10 @@ -// +build !bindata - // Copyright 2016 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. +//go:build !bindata +// +build !bindata + package options import ( diff --git a/modules/options/options_bindata.go b/modules/options/options_bindata.go index 262bd0de3e..64da772c6f 100644 --- a/modules/options/options_bindata.go +++ b/modules/options/options_bindata.go @@ -2,7 +2,8 @@ // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. -//+build bindata +//go:build bindata +// +build bindata package options diff --git a/modules/options/static.go b/modules/options/static.go index 5f4ffdda78..49e8445cd5 100644 --- a/modules/options/static.go +++ b/modules/options/static.go @@ -1,9 +1,10 @@ -// +build bindata - // Copyright 2016 The Gitea Authors. All rights reserved. // Use of this source code is governed by a MIT-style // license that can be found in the LICENSE file. +//go:build bindata +// +build bindata + package options import ( |