Refit source files to have a public xs-apiv1 lib package.
[src/xds/xds-server.git] / lib / xsapiv1 / sdks.go
1 package xsapiv1
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
12         // Not exported fields
13         EnvFile string `json:"-"`
14 }