| 2 | package models |
| 3 | |
| 4 | type TestSet struct { |
| 5 | PreScript string `json:"pre_script" bson:"pre_script" yaml:"preScript"` |
| 6 | PostScript string `json:"post_script" bson:"post_script" yaml:"postScript"` |
| 7 | AppCommand string `json:"app_command" bson:"app_command" yaml:"appCommand"` |
| 8 | Template map[string]interface{} `json:"template" bson:"template" yaml:"template"` |
| 9 | Secret map[string]interface{} `json:"secret" bson:"secret" yaml:"secret,omitempty"` |
| 10 | Metadata map[string]interface{} `json:"metadata" bson:"metadata" yaml:"metadata"` |
| 11 | } |
| 12 | |
| 13 | // Secret interface for types that support secret configuration. |
| 14 | type Secret interface { |
nothing calls this directly
no outgoing calls
no test coverage detected