File size: 150 Bytes
66227af
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""Cache module for Honcho."""

from src.cache.client import (
    close_cache,
    init_cache,
)

__all__ = [
    "close_cache",
    "init_cache",
]