| 29 | ) |
| 30 | |
| 31 | type EdgedLogsConnection struct { |
| 32 | ReadChan chan *Message `json:"-"` |
| 33 | Stop chan struct{} `json:"-"` |
| 34 | MessID uint64 // message id |
| 35 | URL url.URL `json:"url"` |
| 36 | Header http.Header `json:"header"` |
| 37 | } |
| 38 | |
| 39 | func (l *EdgedLogsConnection) GetMessageID() uint64 { |
| 40 | return l.MessID |
nothing calls this directly
no outgoing calls
no test coverage detected