Add package comment and fix var-declaration in main
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
// Package main is the entry point for the pixad image proxy server.
|
||||
package main
|
||||
|
||||
import (
|
||||
@@ -13,9 +14,9 @@ import (
|
||||
)
|
||||
|
||||
var (
|
||||
Appname string = "pixad" //nolint:gochecknoglobals // set by ldflags
|
||||
Version string //nolint:gochecknoglobals // set by ldflags
|
||||
Buildarch string //nolint:gochecknoglobals // set by ldflags
|
||||
Appname = "pixad" //nolint:gochecknoglobals // set by ldflags
|
||||
Version string //nolint:gochecknoglobals // set by ldflags
|
||||
Buildarch string //nolint:gochecknoglobals // set by ldflags
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
Reference in New Issue
Block a user