Fixed current project selection on deletion - Dashboard
[src/xds/xds-agent.git] / lib / apiv1 / sdks.go
1 package apiv1
2
3 // SDK Define a cross tool chain used to build application
4 type SDK struct {
5         ID      string `json:"id" binding:"required"`
6         Name    string `json:"name"`
7         Profile string `json:"profile"`
8         Version string `json:"version"`
9         Arch    string `json:"arch"`
10         Path    string `json:"path"`
11 }