grim/hgkeeper

653b933ba715
Remove the mercurial 6.1 pin from the container image
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
}