grim/hgkeeper

Add a ChangeLog

22 months ago, Gary Kramlich
a85cd09a6ba0
Add a ChangeLog
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
}