| 3 | import "sort" |
| 4 | |
| 5 | type InputDraftBackend interface { |
| 6 | SetInputDraft(string) |
| 7 | } |
| 8 | |
| 9 | func SetBackendInputDraft(backend RendererBackend, draft string) bool { |
| 10 | if setter, ok := backend.(InputDraftBackend); ok { |
no outgoing calls
no test coverage detected