This repository has been archived on 2019-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
migrator/commands.go

14 lines
198 B
Go

// +build !web
package main
import (
"git.jonasfranz.software/JonasFranzDEV/gitea-github-migrator/cmd"
"github.com/urfave/cli"
)
var cmds = cli.Commands{
cmd.CmdMigrate,
cmd.CmdMigrateAll,
}