You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lntop/cmd/lntop/main.go

16 lines
161 B
Go

package main
import (
"log"
"os"
"github.com/edouardparis/lntop/cli"
)
func main() {
err := cli.New().Run(os.Args)
if err != nil {
log.Fatal(err)
}
}