aboutsummaryrefslogtreecommitdiffstats
path: root/lib/xaapiv1/sdks.go
blob: 63ef357d55f0c5644f1a8a01af1e3f4e41e81595 (plain)
1
2
3
4
5
6
7
8
9
10
11
package xaapiv1

// 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"`
}