summaryrefslogtreecommitdiff
path: root/module.go
diff options
context:
space:
mode:
authorPhilipp Tanlak <philipp.tanlak@gmail.com>2023-10-11 20:20:30 +0200
committerPhilipp Tanlak <philipp.tanlak@gmail.com>2023-10-11 20:20:30 +0200
commitfb84ca746e92e371161f1e1de3b01a048a9ae979 (patch)
tree5bb8fbb7fd654b241b389697cc46bad00ce2f8b7 /module.go
parentcd40ab75f44e9f6ac86beca576a934fd790fc9fb (diff)
Implement file based caching
Diffstat (limited to 'module.go')
-rw-r--r--module.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/module.go b/module.go
index 0465808..da81ffb 100644
--- a/module.go
+++ b/module.go
@@ -89,13 +89,16 @@ var (
modulesMu sync.RWMutex
moduleOrder = []string{
+ // Transport Adapters
+ "ratelimit",
"cache",
+
+ // Rest
"starturl",
"followlinks",
"depth",
"domainfilter",
"urlfilter",
- "ratelimit",
"jsonprint",
}
)