| 24 | } |
| 25 | |
| 26 | type Scenario struct { |
| 27 | services []Service |
| 28 | |
| 29 | networkName string |
| 30 | sharedDir string |
| 31 | } |
| 32 | |
| 33 | func NewScenario(networkName string) (*Scenario, error) { |
| 34 | s := &Scenario{networkName: networkName} |
nothing calls this directly
no outgoing calls
no test coverage detected