| 34 | } |
| 35 | |
| 36 | type RuntimeClient struct { |
| 37 | config *RuntimeConfigOptions |
| 38 | userlogType UserLogType |
| 39 | dispatchServer *DispatchServerV2 |
| 40 | } |
| 41 | |
| 42 | func NewRuntimeClient(c *RuntimeConfigOptions, s *DispatcherV2Options, rtMap RuntimeDispatcher) (rc *RuntimeClient, err error) { |
| 43 | dispatchServer := NewDispatchServerV2(s, rtMap) |
nothing calls this directly
no outgoing calls
no test coverage detected