()
| 49 | } |
| 50 | |
| 51 | func init() { |
| 52 | p := &AshPlugin{ |
| 53 | BaseAsyncPlugin: plugin.NewBaseAsyncPlugin("ash", 2), // 优先级2,质量良好的影视资源 |
| 54 | } |
| 55 | plugin.RegisterGlobalPlugin(p) |
| 56 | } |
| 57 | |
| 58 | // Search 执行搜索并返回结果 |
| 59 | func (p *AshPlugin) Search(keyword string, ext map[string]interface{}) ([]model.SearchResult, error) { |
nothing calls this directly
no test coverage detected