summaryrefslogtreecommitdiffstats
path: root/core/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/models.py')
-rw-r--r--core/models.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/models.py b/core/models.py
index 8082d6e..cd8db02 100644
--- a/core/models.py
+++ b/core/models.py
@@ -32,7 +32,11 @@ There are more subclasses define in models_caves.py models_survex.py etc.
# This variable is a dictionary holding gloablly visible indexes and cache functions.
# It is a Global Object, see https://python-patterns.guide/python/module-globals/
# troggle.models.TROG
-TROG = {}
+TROG = {
+ 'pagecache' : {
+ 'expedition' : {}
+ }
+}
def get_process_memory():
usage=resource.getrusage(resource.RUSAGE_SELF)