Add package comment and fix var-declaration in main

This commit is contained in:
2026-01-08 02:23:56 -08:00
parent ef6e67e786
commit 34fb126e6c

View File

@@ -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() {