| 34 | ) |
| 35 | |
| 36 | type DpApiServer struct { |
| 37 | proto.UnimplementedDpiInterfaceServer |
| 38 | |
| 39 | dataplane *data_plane.Dataplane |
| 40 | Proxy *proxy.ProxyingService |
| 41 | } |
| 42 | |
| 43 | func NewDpApiServer(dataPlane *data_plane.Dataplane) *DpApiServer { |
| 44 | return &DpApiServer{ |
nothing calls this directly
no outgoing calls
no test coverage detected