(ctx context.Context)
| 140 | } |
| 141 | |
| 142 | func (a *Application) Stop(ctx context.Context) error { |
| 143 | name, err := a.ContainerName(ctx) |
| 144 | if err != nil { |
| 145 | return err |
| 146 | } |
| 147 | |
| 148 | return a.namespace.client.ContainerStop(ctx, name, container.StopOptions{}) |
| 149 | } |
| 150 | |
| 151 | func (a *Application) Start(ctx context.Context) error { |
| 152 | name, err := a.ContainerName(ctx) |
nothing calls this directly
no test coverage detected