Compare commits
2 Commits
1840b449d5
...
442804fde5
Author | SHA1 | Date | |
---|---|---|---|
442804fde5 | |||
214cfdaea9 |
16
lmcli.go
Normal file
16
lmcli.go
Normal file
@ -0,0 +1,16 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"git.mlow.ca/mlow/lmcli/pkg/cli"
|
||||
)
|
||||
|
||||
func main() {
|
||||
lmcli := cli.NewRootCmd()
|
||||
if err := lmcli.Execute(); err != nil {
|
||||
fmt.Println(err)
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user