13 lines
200 B
Go
13 lines
200 B
Go
|
// Command printversion prints the current version of this repository.
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/ooni/probe-cli/v3/internal/version"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println(version.Version)
|
||
|
}
|