Jeffrey Paul
7df558d8d0
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: sneak <sneak@sneak.berlin> Reviewed-on: #5
13 lines
231 B
Go
13 lines
231 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/apex/log"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func (mfa *CLIApp) fetchManifestOperation(c *cli.Context) error {
|
|
log.Debugf("fetchManifestOperation()")
|
|
panic("not implemented")
|
|
return nil //nolint
|
|
}
|