aboutsummaryrefslogtreecommitdiffstats
path: root/lib/agent/apiv1-sdks.go
blob: ee6409d6ff70ec54cebc2d76501af4f083868811 (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("/sdk/:id")

	return nil
}