Source defines the interface that external task providers must implement.
| 19 | |
| 20 | // Source defines the interface that external task providers must implement. |
| 21 | type Source interface { |
| 22 | Name() string |
| 23 | ValidateConfig(cfg SourceConfig) error |
| 24 | FetchTasks(cfg SourceConfig) ([]ExternalTask, error) |
| 25 | } |
no outgoing calls
no test coverage detected