mirror of
https://github.com/datarhei/core.git
synced 2025-09-26 20:11:29 +08:00
Store binary in the store
This commit is contained in:
@@ -77,6 +77,7 @@ type ProcessConfig struct {
|
||||
Reference string `json:"reference"`
|
||||
Owner string `json:"owner"`
|
||||
Domain string `json:"domain"`
|
||||
Binary string `json:"binary"`
|
||||
FFVersion string `json:"ffversion"`
|
||||
Input []ProcessConfigIO `json:"input"`
|
||||
Output []ProcessConfigIO `json:"output"`
|
||||
@@ -98,6 +99,7 @@ func (p *ProcessConfig) Marshal(a *app.Config) {
|
||||
p.Reference = a.Reference
|
||||
p.Owner = a.Owner
|
||||
p.Domain = a.Domain
|
||||
p.Binary = a.Binary
|
||||
p.FFVersion = a.FFVersion
|
||||
p.Reconnect = a.Reconnect
|
||||
p.ReconnectDelay = a.ReconnectDelay
|
||||
@@ -132,6 +134,7 @@ func (p *ProcessConfig) Unmarshal() *app.Config {
|
||||
Reference: p.Reference,
|
||||
Owner: p.Owner,
|
||||
Domain: p.Domain,
|
||||
Binary: p.Binary,
|
||||
FFVersion: p.FFVersion,
|
||||
Input: []app.ConfigIO{},
|
||||
Output: []app.ConfigIO{},
|
||||
|
Reference in New Issue
Block a user