git-lfs/commands/command_migrate.go

13 lines
181 B
Go
Raw Normal View History

package commands
import (
"github.com/spf13/cobra"
)
func migrateCommand(cmd *cobra.Command, args []string) {
}
func init() {
RegisterCommand("migrate", migrateCommand, nil)
}