mfer/internal/cli/fetch.go

13 lines
231 B
Go
Raw Normal View History

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