Handler handles image processing requests
| 40 | |
| 41 | // Handler handles image processing requests |
| 42 | type Handler struct { |
| 43 | HandlerContext |
| 44 | |
| 45 | stream *stream.Handler // Stream handler for raw image streaming |
| 46 | config *Config // Handler configuration |
| 47 | } |
| 48 | |
| 49 | // New creates new handler object |
| 50 | func New( |
nothing calls this directly
no outgoing calls
no test coverage detected