(group ...string)
| 66 | } |
| 67 | |
| 68 | func Drivers(group ...string) []string { |
| 69 | if len(group) > 0 && group[0] != "" { |
| 70 | return manager.DriversByGroup(group[0]) |
| 71 | } |
| 72 | return manager.Drivers() |
| 73 | } |
| 74 | |
| 75 | func List(group ...string) []IDriver { |
| 76 | if len(group) > 0 && group[0] != "" { |
nothing calls this directly
no test coverage detected