| 18 | ) |
| 19 | |
| 20 | type CondaPython struct { |
| 21 | ctx context.Context |
| 22 | archiveName string |
| 23 | pythonVersion string |
| 24 | condaVersion string |
| 25 | condaBinary string |
| 26 | } |
| 27 | |
| 28 | func NewCondaPython(ctx context.Context, archiveName, condaVersion, pythonVersion string) *CondaPython { |
| 29 | return &CondaPython{ |
nothing calls this directly
no outgoing calls
no test coverage detected