(operate, serviceName string)
| 47 | } |
| 48 | |
| 49 | func (s *Snap) Operate(operate, serviceName string) error { |
| 50 | if s.IsExist(serviceName) { |
| 51 | return handlerErr(run(s.toolCmd, operate, serviceName)) |
| 52 | } |
| 53 | return nil |
| 54 | } |
nothing calls this directly
no test coverage detected