Move store item into schema package

Signed-off-by: Amir Karimi <a.karimi.k@gmail.com>
This commit is contained in:
Amir Karimi
2017-12-31 00:19:14 +00:00
committed by Alex Ellis
parent 12d5221572
commit cdeb21d131
2 changed files with 18 additions and 15 deletions

13
schema/store_item.go Normal file
View File

@@ -0,0 +1,13 @@
package schema
// StoreItem represents an item of store
type StoreItem struct {
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"`
}