Matt Low
239ded18f3
Various refactoring: - reduced repetition with conversation message handling - made some functions internal
16 lines
184 B
Go
16 lines
184 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"git.mlow.ca/mlow/lmcli/pkg/cli"
|
|
)
|
|
|
|
func main() {
|
|
if err := cli.Execute(); err != nil {
|
|
fmt.Fprintln(os.Stderr, err.Error())
|
|
os.Exit(1)
|
|
}
|
|
}
|