diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-10-11 20:20:30 +0200 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-10-11 20:20:30 +0200 |
| commit | fb84ca746e92e371161f1e1de3b01a048a9ae979 (patch) | |
| tree | 5bb8fbb7fd654b241b389697cc46bad00ce2f8b7 /module.go | |
| parent | cd40ab75f44e9f6ac86beca576a934fd790fc9fb (diff) | |
Implement file based caching
Diffstat (limited to 'module.go')
| -rw-r--r-- | module.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -89,13 +89,16 @@ var ( modulesMu sync.RWMutex moduleOrder = []string{ + // Transport Adapters + "ratelimit", "cache", + + // Rest "starturl", "followlinks", "depth", "domainfilter", "urlfilter", - "ratelimit", "jsonprint", } ) |