Moved all structs exposed by API into apiv1 package
[src/xds/xds-agent.git] / lib / agent / apiv1-sdks.go
diff --git a/lib/agent/apiv1-sdks.go b/lib/agent/apiv1-sdks.go
new file mode 100644 (file)
index 0000000..ee6409d
--- /dev/null
@@ -0,0 +1,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
+}