Files
faas-cli/schema/store_item.go
Vivek Singh 5d6c4f2dee Move version in package name
Signed-off-by: Vivek Singh <vivekkmr45@yahoo.in>
2019-11-05 16:03:35 +00:00

18 lines
809 B
Go

package schema
// StoreItem represents an item of store
type StoreItem struct {
Icon string `json:"icon"`
Title string `json:"title"`
Description string `json:"description"`
Image string `json:"image"`
Name string `json:"name"`
Fprocess string `json:"fprocess"`
Network string `json:"network"`
RepoURL string `json:"repo_url"`
Environment map[string]string `json:"environment"`
Labels map[string]string `json:"labels"`
Annotations map[string]string `json:"annotations"`
ReadOnlyRootFilesystem bool `json:"readOnlyRootFilesystem"`
}