mirror of
https://github.com/jimeh/mje.git
synced 2026-02-19 09:56:41 +00:00
refactor: rename from mj2n to mje
This commit is contained in:
14
main.go
14
main.go
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user