Add version command

This commit is contained in:
2021-02-27 22:42:09 -06:00
parent c9e4d9af80
commit 0fac4a3c14
2 changed files with 21 additions and 1 deletions

View File

@ -26,8 +26,11 @@ func init() {
RegisterCommand(NewCmdSetWhite())
RegisterCommand(NewCmdShow())
RegisterCommand(NewCmdToggle())
RegisterCommand(NewCmdVersion())
}
const Version = "0.1.0-pre"
const lumercFile string = ".lumerc"
func Main(args []string) (int, error) {