blob: 73ad2afdd81454713e382318c5f9be9ef904f77e (
plain)
1
2
3
4
5
6
7
8
9
|
package agent
// sdksPassthroughInit Declare passthrough routes for sdks
func (s *APIService) sdksPassthroughInit(svr *XdsServer) error {
svr.PassthroughGet("/sdks")
svr.PassthroughGet("/sdks/:id")
return nil
}
|