SessionEventData is the interface implemented by all per-event data types.
| 10 | |
| 11 | // SessionEventData is the interface implemented by all per-event data types. |
| 12 | type SessionEventData interface { |
| 13 | sessionEventData() |
| 14 | Type() SessionEventType |
| 15 | } |
| 16 | |
| 17 | // SessionEvent represents a single session event with a typed data payload. |
| 18 | type SessionEvent struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…