mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
13 lines
173 B
Go
13 lines
173 B
Go
package config
|
|
|
|
import "strings"
|
|
|
|
const Version = "v0.6.3"
|
|
|
|
func GetVersion() (v string) {
|
|
if strings.HasPrefix(Version, "v") {
|
|
return Version
|
|
}
|
|
return "v" + Version
|
|
}
|