Files
any-hub/version.go
Rogee 83bb6623e8
Some checks failed
docker-release / build-and-push (push) Failing after 9m59s
adjust dir structures
2025-11-14 15:02:33 +08:00

13 lines
199 B
Go

package main
import (
"fmt"
"github.com/any-hub/any-hub/internal/version"
)
// printVersion 输出注入的版本 + 提交信息。
func printVersion() {
fmt.Fprintln(stdOut, version.Full())
}