grim/hgkeeper

Bump the version to 2.0.0-dev

11 months ago, Gary Kramlich
337882c91d45
Bump the version to 2.0.0-dev
package version
import (
"fmt"
"keep.imfreedom.org/grim/hgkeeper/globals"
)
const Version = "2.0.0-dev"
var Commit = "unknown"
type Command struct{}
func (c *Command) Run(g *globals.Globals) error {
fmt.Printf("hgkeeper %s~%s\n", Version, Commit)
return nil
}