(opts *PolicyEvalOpts, actionOpts *ActionsOpts)
| 39 | } |
| 40 | |
| 41 | func NewPolicyEval(opts *PolicyEvalOpts, actionOpts *ActionsOpts) (*PolicyEval, error) { |
| 42 | return &PolicyEval{ |
| 43 | ActionsOpts: actionOpts, |
| 44 | opts: opts, |
| 45 | }, nil |
| 46 | } |
| 47 | |
| 48 | func (action *PolicyEval) Run() (*policydevel.EvalSummary, error) { |
| 49 | var attClient pb.AttestationServiceClient |
no outgoing calls
no test coverage detected