Strings converts []Module to []string.
()
| 63 | |
| 64 | // Strings converts []Module to []string. |
| 65 | func (m Capabilities) Strings() []string { |
| 66 | var result []string |
| 67 | for _, module := range m { |
| 68 | result = append(result, string(module)) |
| 69 | } |
| 70 | return result |
| 71 | } |
| 72 | |
| 73 | // MessageHandler see plugin.MessageHandler. |
| 74 | type MessageHandler interface { |
no outgoing calls