refactor: rename from mj2n to mje

This commit is contained in:
2022-09-15 23:44:32 +01:00
parent b0e52fc498
commit 7fdd61b54c
14 changed files with 389 additions and 376 deletions

14
main.go
View File

@@ -7,11 +7,21 @@ import (
"os/signal"
"syscall"
"github.com/jimeh/mj2n/commands"
"github.com/jimeh/mje/commands"
)
var (
version = ""
commit = ""
date = ""
)
func main() {
cmd, err := commands.NewMJ2N()
cmd, err := commands.New(commands.Info{
Version: version,
Commit: commit,
Date: date,
})
if err != nil {
fatal(err)
}