mirror of
https://github.com/j3ssie/osmedeus.git
synced 2026-09-27 20:14:54 +02:00
23 lines
504 B
Go
23 lines
504 B
Go
package libs
|
|
|
|
// Queue sub options for quque
|
|
type Queue struct {
|
|
QueueFolder string
|
|
QueueFile string
|
|
RawCommand string
|
|
|
|
InputAsFile bool
|
|
Add bool
|
|
}
|
|
|
|
type InputFormat struct {
|
|
Input string `json:"input"`
|
|
Flow string `json:"flow"`
|
|
Modules []string `json:"module"`
|
|
Params []string `json:"params"`
|
|
Workspaces string `json:"workspace"`
|
|
Extra string `json:"extra"`
|
|
Command string `json:"command"`
|
|
InputAsFile bool `json:"input-as-file"`
|
|
}
|