DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

9feb0fb94136ee70e65fabd1a47a11488c50ce15 — skye 1 year, 5 months ago cd13a21
feat(api): add a seed field to actions
1 files changed, 2 insertions(+), 0 deletions(-)

M api/models/action.go
M api/models/action.go => api/models/action.go +2 -0
@@ 24,6 24,7 @@ type Action struct {
	Invoker    string         `json:"invoker"`
	Target     string         `json:"target"`
	Command    datatypes.JSON `json:"command"`
	Seed       uint64         `json:"seed"`
}

type PostAction struct {


@@ 31,4 32,5 @@ type PostAction struct {
	Invoker string `json:"invoker"`
	Target  string `json:"target"`
	Command string `json:"command"`
	Seed    uint64 `json:"seed"`
}