2022-12-04 07:59:36 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
2022-12-09 00:02:33 +00:00
|
|
|
"github.com/apex/log"
|
2022-12-04 07:59:36 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (mfa *CLIApp) fetchManifestOperation(c *cli.Context) error {
|
2022-12-09 00:02:33 +00:00
|
|
|
log.Debugf("fetchManifestOperation()")
|
|
|
|
panic("not implemented")
|
|
|
|
return nil //nolint
|
2022-12-04 07:59:36 +00:00
|
|
|
}
|