mirror of
https://github.com/fumiama/WireGold.git
synced 2026-06-04 23:40:26 +08:00
10 lines
232 B
Go
10 lines
232 B
Go
package config
|
|
|
|
import "time"
|
|
|
|
// ShowDebugLog turn on to print verbose logs.
|
|
const ShowDebugLog = false
|
|
|
|
// Version will show in help message to distinguish different builds.
|
|
var Version = "dev-" + time.Now().Format(time.DateOnly)
|