15 lines
234 B
Go
15 lines
234 B
Go
package manifest
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
Branch = ""
|
|
Commit = ""
|
|
Version = "development"
|
|
Static = ""
|
|
)
|
|
|
|
func init() {
|
|
fmt.Printf("[AppInfo][Init] Version: %s Branch: %s Commit: %s Static:%s\n", Version, Branch, Commit, Static)
|
|
}
|