Jeffrey Paul
7df558d8d0
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: sneak <sneak@sneak.berlin> Reviewed-on: #5
14 lines
211 B
Go
14 lines
211 B
Go
package cli
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func (mfa *CLIApp) checkManifestOperation(c *cli.Context) error {
|
|
log.WithError(errors.New("unimplemented"))
|
|
return nil
|
|
}
|