Skip to content

Commit 8ba06f7

Browse files
authored
Fix copy/paste fail
1 parent 8020fae commit 8ba06f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ type Field struct {
1313
}
1414

1515
type Action struct {
16-
Type *string `json:"type"`
17-
Text *string `json:"text"`
18-
Url *string `json:"url"`
19-
Style *string `json:"style"`
16+
Type string `json:"type"`
17+
Text string `json:"text"`
18+
Url string `json:"url"`
19+
Style string `json:"style"`
2020
}
2121

2222
type Attachment struct {

0 commit comments

Comments
 (0)