DistZipContainer handles distribution ZIP applications (applications with bin/ and lib/ structure, typically from Gradle's distZip)
| 11 | // DistZipContainer handles distribution ZIP applications |
| 12 | // (applications with bin/ and lib/ structure, typically from Gradle's distZip) |
| 13 | type DistZipContainer struct { |
| 14 | context *common.Context |
| 15 | startScript string |
| 16 | } |
| 17 | |
| 18 | // NewDistZipContainer creates a new Dist ZIP container |
| 19 | func NewDistZipContainer(ctx *common.Context) *DistZipContainer { |
nothing calls this directly
no outgoing calls
no test coverage detected