We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21e434d commit cd4d721Copy full SHA for cd4d721
main.go
@@ -142,7 +142,7 @@ mutation AddApp($name: String!) {
142
}
143
144
if respData.AddApp.Error != "" {
145
- fmt.Printf(" ! %v!\n", respData.AddApp.Error)
+ fmt.Printf(" ! %v\n", respData.AddApp.Error)
146
} else {
147
fmt.Printf("====> %v created!\n", respData.AddApp.App.Name)
148
@@ -180,7 +180,7 @@ mutation DeleteApp($name: String!) {
180
181
182
if respData.DeleteApp.Error != "" {
183
- fmt.Printf(" ! %v!\n", respData.DeleteApp.Error)
+ fmt.Printf(" ! %v\n", respData.DeleteApp.Error)
184
185
fmt.Printf("====> %v deleted!\n", name)
186
0 commit comments