diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-10-17 19:19:38 +0200 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-10-17 19:19:38 +0200 |
| commit | 03b3be0c3bbc70584e8988e1810dc28eacf4521f (patch) | |
| tree | 8eb1071aec0815b1cc8d34a4482907455ae5e8bd /module.go | |
| parent | 11d73f57a80bb65b7507ec80433b8f035ed226c2 (diff) | |
Add HTTP(S) Proxy support
Diffstat (limited to 'module.go')
| -rw-r--r-- | module.go | 12 |
1 files changed, 3 insertions, 9 deletions
@@ -89,16 +89,10 @@ var ( modulesMu sync.RWMutex moduleOrder = []string{ - // Transport Adapters + // Transport adapters must be loaded in a specific order. + // All other modules can be loaded in any order. + "proxy", "ratelimit", "cache", - - // Rest - "starturl", - "followlinks", - "depth", - "domainfilter", - "urlfilter", - "jsonprint", } ) |