13 lines
182 B
Go
13 lines
182 B
Go
|
package cli
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
func (mfa *CLIApp) fetchManifestOperation(c *cli.Context) error {
|
||
|
fmt.Println("fetchManifestOperation()")
|
||
|
return nil
|
||
|
}
|