mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
10 lines
176 B
Python
10 lines
176 B
Python
from . import logging, lrucache, lrucache_evict
|
|
|
|
SUITES = [
|
|
(logging, 1000),
|
|
(logging, 10000),
|
|
(logging, None),
|
|
(lrucache, None),
|
|
(lrucache_evict, None),
|
|
]
|