Yeet those builds out!
at main 443 B view raw
1// Package yeet contains the version number of Yeet. 2package yeet 3 4// Version is the current version of yeet. 5// 6// This variable is set at build time using the -X linker flag. If not set, 7// it defaults to "devel". 8var Version = "devel" 9 10// BuildMethod contains the method used to build the yeet binary. 11// 12// This variable is set at build time using the -X linker flag. If not set, 13// it defaults to "go-build". 14var BuildMethod = "go-build"