grim/hgkeeper

A few more typoes in the docs
v1.0.0
23 months ago, Gary Kramlich
b1bb1f180fee
A few more typoes in the docs
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
}