PlayContainer represents a Play Framework application container
| 11 | |
| 12 | // PlayContainer represents a Play Framework application container |
| 13 | type PlayContainer struct { |
| 14 | context *common.Context |
| 15 | playType string // "pre22_dist", "pre22_staged", "post22_dist", "post22_staged" |
| 16 | playVersion string |
| 17 | startScript string |
| 18 | libDir string |
| 19 | } |
| 20 | |
| 21 | // NewPlayContainer creates a new Play Framework container |
| 22 | func NewPlayContainer(ctx *common.Context) *PlayContainer { |
nothing calls this directly
no outgoing calls
no test coverage detected