0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-19 20:13:45 +02:00
synapse/synmark/suites/__init__.py
2020-04-03 16:31:52 +01:00

10 lines
176 B
Python

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