github.com/jfrog/jfrog-cli-go@v1.22.1-0.20200318093948-4826ef344ffd/artifactory/commands/nuget/legacyconsume.go (about) 1 package nuget 2 3 type NugetLegacyCommand struct { 4 *NugetCommandArgs 5 } 6 7 func NewLegacyNugetCommand() *NugetLegacyCommand { 8 return &NugetLegacyCommand{&NugetCommandArgs{}} 9 } 10 11 func (nlic *NugetLegacyCommand) Run() error { 12 return nlic.run() 13 }