(backend RendererBackend, draft string)
| 7 | } |
| 8 | |
| 9 | func SetBackendInputDraft(backend RendererBackend, draft string) bool { |
| 10 | if setter, ok := backend.(InputDraftBackend); ok { |
| 11 | setter.SetInputDraft(draft) |
| 12 | return true |
| 13 | } |
| 14 | return false |
| 15 | } |
| 16 | |
| 17 | type TaskSignature struct { |
| 18 | Status any |
nothing calls this directly
no test coverage detected