mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
14 lines
187 B
Go
Executable File
14 lines
187 B
Go
Executable File
package libol
|
|
|
|
var (
|
|
Date string
|
|
Version string
|
|
Commit string
|
|
)
|
|
|
|
func ShowVersion() {
|
|
Info("Version is %s", Version)
|
|
Info("Built on %s", Date)
|
|
Info("Commit id %s", Commit)
|
|
}
|