()
| 45 | } |
| 46 | |
| 47 | func (c *DockerComposeYml) IsNil() bool { |
| 48 | return c.Version == "" && len(c.Services) == 0 && len(c.Volumes) == 0 && len(c.Networks) == 0 && len(c.Secrets) == 0 |
| 49 | } |
| 50 | |
| 51 | func (c *DockerComposeYml) IsNotNil() bool { |
| 52 | return !c.IsNil() |