matrix-org_synapse/synmark/suites/__init__.py

10 lines
176 B
Python

from . import logging, lrucache, lrucache_evict
SUITES = [
(logging, 1000),
(logging, 10000),
(logging, None),
(lrucache, None),
(lrucache_evict, None),
]