mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 16:47:11 +08:00
13 lines
149 B
Go
Executable File
13 lines
149 B
Go
Executable File
package libol
|
|
|
|
var (
|
|
Date string
|
|
Version string
|
|
Commit string
|
|
)
|
|
|
|
func init() {
|
|
Debug("version is %s", Version)
|
|
Debug("built on %s", Date)
|
|
}
|