1
0
Files
synapse/synmark/suites/__init__.py
Amber H. Brown e174b2d19c fix style
2019-12-02 19:49:13 +11:00

10 lines
176 B
Python

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