blob: 5ca4dd5a311da41f7e1142e63d799c91aaf0d553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package xsapiv1
// SDK Define a cross tool chain used to build application
type SDK struct {
ID string `json:"id" binding:"required"`
Name string `json:"name"`
Profile string `json:"profile"`
Version string `json:"version"`
Arch string `json:"arch"`
Path string `json:"path"`
// Not exported fields
EnvFile string `json:"-"`
}
|