Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
correcting types
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Spira authored and em0ney committed Mar 15, 2021
1 parent 64904ac commit e1fcfc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gorillastack/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ func (c *Client) DeleteRule(teamId string, ruleId string) error {
return err
}

var result string
var result RuleApiOutput
_, err = c.do(req, &result)

if (err != nil) {
Expand Down
2 changes: 1 addition & 1 deletion gorillastack/tag_groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (c *Client) DeleteTagGroup(teamId string, tagGroupId string) error {
return err
}

var result string
var result TagGroupApiOutput
_, err = c.do(req, &result)

if err != nil {
Expand Down

0 comments on commit e1fcfc9

Please sign in to comment.