(section string)
| 15 | } |
| 16 | |
| 17 | func (b *MessageBuilder) AddCommentedSection(section string) { |
| 18 | b.commentedSections = append(b.commentedSections, section) |
| 19 | } |
| 20 | |
| 21 | func (b *MessageBuilder) Extract() (title, body string, err error) { |
| 22 | content := b.Message |
no outgoing calls
no test coverage detected