(workingDir, filepath, projectName string)
| 22 | } |
| 23 | |
| 24 | func New(workingDir, filepath, projectName string) *DockerCompose { |
| 25 | return &DockerCompose{ |
| 26 | workingDir: workingDir, |
| 27 | filepath: filepath, |
| 28 | projectName: projectName, |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | func (dc *DockerCompose) WriteComposeFile(composeFile *ComposeFile) error { |
| 33 | f, err := os.Create(dc.filepath) |
no outgoing calls
no test coverage detected