| 14 | ) |
| 15 | |
| 16 | type LifecycleScript struct { |
| 17 | shellCommands map[string]string |
| 18 | nonShellCommands map[string][]string |
| 19 | } |
| 20 | |
| 21 | func (s *LifecycleScript) IsEmpty() bool { |
| 22 | return len(s.shellCommands) == 0 && len(s.nonShellCommands) == 0 |
nothing calls this directly
no outgoing calls
no test coverage detected