Files
i2p.plugins.tor-updater/version.go

13 lines
140 B
Go
Raw Normal View History

2022-07-15 19:06:14 -04:00
package main
import (
"fmt"
"os"
)
var VERSION string = "0.0.15"
func printversion() {
2022-07-15 19:07:26 -04:00
fmt.Fprintf(os.Stdout, "Version: ", VERSION)
2022-07-15 19:06:14 -04:00
}