(ctx context.Context, dr types.DeployRepo)
| 25 | |
| 26 | type Deployer interface { |
| 27 | Deploy(ctx context.Context, dr types.DeployRepo) (deployID int64, err error) |
| 28 | Status(ctx context.Context, dr types.DeployRepo, needDetails bool) (srvName string, status int, instances []types.Instance, err error) |
| 29 | Logs(ctx context.Context, dr types.DeployRepo) (*MultiLogReader, error) |
| 30 | Stop(ctx context.Context, dr types.DeployRepo) (err error) |
no outgoing calls
no test coverage detected