grim/hgkeeper

8275959b76f0
Add support for specifying which mercurial executable to use
package version
import (
"fmt"
"keep.imfreedom.org/grim/hgkeeper/globals"
)
const Version = "1.1.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
}