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

22 lines
359 B

package main
import (
"git.jonasfranz.software/JonasFranzDEV/gitea-issue-exporter/cmd"
"github.com/urfave/cli"
"log"
"os"
)
func main() {
app := &cli.App{
Name: "gitea-issue-exporter",
Usage: "export all open issues to markdown",
Commands: []cli.Command{
cmd.ExportAll,
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}