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.
chantools/cmd/chantools/main.go

17 lines
198 B
Go

package main
import (
"fmt"
"os"
"github.com/guggero/chantools"
)
func main() {
if err := chantools.Main(); err != nil {
fmt.Printf("Error running chantools: %v\n", err)
}
os.Exit(0)
}