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
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@@ -13,7 +14,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
Appname string = "pixad" //nolint:gochecknoglobals // set by ldflags
|
Appname = "pixad" //nolint:gochecknoglobals // set by ldflags
|
||||||
Version string //nolint:gochecknoglobals // set by ldflags
|
Version string //nolint:gochecknoglobals // set by ldflags
|
||||||
Buildarch string //nolint:gochecknoglobals // set by ldflags
|
Buildarch string //nolint:gochecknoglobals // set by ldflags
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user