FunnelID represents a key type that can be used by FunnelTracker
| 56 | |
| 57 | // FunnelID represents a key type that can be used by FunnelTracker |
| 58 | type FunnelID interface { |
| 59 | // Type returns the name of the type that implements the FunnelID |
| 60 | Type() string |
| 61 | fmt.Stringer |
| 62 | } |
| 63 | |
| 64 | // FunnelTracker tracks funnel from the perspective of eyeball to origin |
| 65 | type FunnelTracker struct { |
nothing calls this directly
no outgoing calls
no test coverage detected