AddContent adds raw content to the dialog.
(content string)
| 229 | |
| 230 | // AddContent adds raw content to the dialog. |
| 231 | func (dc *Content) AddContent(content string) *Content { |
| 232 | dc.parts = append(dc.parts, content) |
| 233 | return dc |
| 234 | } |
| 235 | |
| 236 | // AddHelpKeys adds key binding help at the bottom. |
| 237 | func (dc *Content) AddHelpKeys(bindings ...string) *Content { |
no outgoing calls
no test coverage detected