()
| 406 | } |
| 407 | |
| 408 | func (m *moduleDef) Long() string { |
| 409 | s := m.Name |
| 410 | if m.Description != "" { |
| 411 | return s + "\n\n" + m.Description |
| 412 | } |
| 413 | return s |
| 414 | } |
| 415 | |
| 416 | func (m *moduleDef) AsFunctionProviders() []functionProvider { |
| 417 | providers := make([]functionProvider, 0, len(m.Objects)+len(m.Interfaces)) |
no outgoing calls
no test coverage detected