2022-12-04 07:59:36 +00:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
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) checkManifestOperation(c *cli.Context) error {
|
2022-12-09 00:02:33 +00:00
|
|
|
log.WithError(errors.New("unimplemented"))
|
2022-12-04 07:59:36 +00:00
|
|
|
return nil
|
|
|
|
}
|