14 lines
298 B
Go
14 lines
298 B
Go
|
package buildinfo
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func Debug() {
|
||
|
fmt.Printf("Name: %s\n", Name)
|
||
|
fmt.Printf("Version: %s\n", Version)
|
||
|
fmt.Printf("Commit: %s\n", Commit)
|
||
|
fmt.Printf("BuildTime: %s\n", BuildTime)
|
||
|
fmt.Printf("OS: %s\n", OS)
|
||
|
fmt.Printf("Arch: %s\n", Arch)
|
||
|
fmt.Printf("ShowDeps: %t\n", ShowDeps)
|
||
|
}
|