| 25 | ) |
| 26 | |
| 27 | type Streamer interface { |
| 28 | AddSubscriber() *Subscriber |
| 29 | RemoveSubscriber(id int32) |
| 30 | Reload() |
| 31 | BuildFailed(msg BuildFailedMsg) |
| 32 | Stop() |
| 33 | } |
| 34 | |
| 35 | // contentEncoding represents the type of content encoding used in HTTP responses. |
| 36 | type contentEncoding int |
no outgoing calls
no test coverage detected
searching dependent graphs…