Changed Default GUI Mode to Electron
This commit is contained in:
10
internal/version/version.go
Normal file
10
internal/version/version.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package version
|
||||
|
||||
// Version and BuildTime are set at build time using -ldflags. Defaults are provided
|
||||
// for development builds.
|
||||
var Version = "dev"
|
||||
var BuildTime = "unknown"
|
||||
|
||||
func String() string {
|
||||
return Version + " (" + BuildTime + ")"
|
||||
}
|
||||
Reference in New Issue
Block a user