grim/hgkeeper

ebc5f568d629
Add a note about downloads and pgp verification to the readme
package version
import (
"fmt"
"keep.imfreedom.org/grim/hgkeeper/globals"
)
const Version = "1.0.0"
var Commit = "unknown"
type Command struct{}
func (c *Command) Run(g *globals.Globals) error {
fmt.Printf("hgkeeper %s~%s\n", Version, Commit)
return nil
}