(cfg *ActionsOpts)
| 26 | } |
| 27 | |
| 28 | func NewOrgCreate(cfg *ActionsOpts) *OrgCreate { |
| 29 | return &OrgCreate{cfg} |
| 30 | } |
| 31 | |
| 32 | func (action *OrgCreate) Run(ctx context.Context, name string) (*OrgItem, error) { |
| 33 | client := pb.NewOrganizationServiceClient(action.cfg.CPConnection) |
no outgoing calls
no test coverage detected