Use plural nouns for all routes.
[src/xds/xds-agent.git] / lib / agent / apiv1-sdks.go
1 package agent
2
3 // sdksPassthroughInit Declare passthrough routes for sdks
4 func (s *APIService) sdksPassthroughInit(svr *XdsServer) error {
5         svr.PassthroughGet("/sdks")
6         svr.PassthroughGet("/sdks/:id")
7
8         return nil
9 }