set configuration for each extractor

This commit is contained in:
stefanodvx 2025-04-20 12:19:14 +02:00
parent 6baa965534
commit 0a63df9ce6
19 changed files with 337 additions and 175 deletions

7
models/http.go Normal file
View file

@ -0,0 +1,7 @@
package models
import "net/http"
type HTTPClient interface {
Do(req *http.Request) (*http.Response, error)
}