0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-09 20:59:00 +02:00
synapse/synmark/suites/__init__.py

10 lines
176 B
Python
Raw Normal View History

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