| 25 | var _ = fmt.Print |
| 26 | |
| 27 | type Preview interface { |
| 28 | Render(h *Handler, x, y, width, height int) |
| 29 | IsValidForColorScheme(light bool) bool |
| 30 | Unload() |
| 31 | IsReady() bool |
| 32 | String() string |
| 33 | } |
| 34 | |
| 35 | type PreviewManager struct { |
| 36 | report_errors chan error |
no outgoing calls
no test coverage detected