1f0fcafb8a
Work related to https://github.com/ooni/probe/issues/1506#issuecomment-949715707. This diff cherry-picks from the release/3.11 branch.
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)
|
|
}
|