| 14 | } |
| 15 | |
| 16 | type Image struct { |
| 17 | Cmd string // original command from present source |
| 18 | URL string |
| 19 | Width int |
| 20 | Height int |
| 21 | } |
| 22 | |
| 23 | func (i Image) PresentCmd() string { return i.Cmd } |
| 24 | func (i Image) TemplateName() string { return "image" } |
nothing calls this directly
no outgoing calls
no test coverage detected