mirror of
https://github.com/miguelmota/cointop
synced 2024-11-14 18:12:57 +00:00
14 lines
215 B
Go
14 lines
215 B
Go
package cointop
|
|
|
|
// TODO: make dynamic based on git tag
|
|
const version = "1.1.1"
|
|
|
|
func (ct *Cointop) version() string {
|
|
return version
|
|
}
|
|
|
|
// Version returns cointop version
|
|
func Version() string {
|
|
return version
|
|
}
|