mirror of
https://github.com/element-hq/synapse.git
synced 2024-12-15 17:51:10 +00:00
9 lines
176 B
Python
9 lines
176 B
Python
from . import logging, lrucache, lrucache_evict
|
|
|
|
SUITES = [
|
|
(logging, 1000),
|
|
(logging, 10000),
|
|
(logging, None),
|
|
(lrucache, None),
|
|
(lrucache_evict, None),
|
|
]
|