grim/hgkeeper

Instally pygments into the default image

17 months ago, Gary Kramlich
119639a05934
Instally pygments into the default 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
}