blob: 7d3999e102dff85cc216c063b7f8a7c807665c7b (
plain)
1
2
3
4
5
6
7
8
|
"""Placeholder module for backwards-compatibility"""
import warnings
from .patcher import * # noqa: F401, F403
from .session import * # noqa: F401, F403
msg = 'The module `requests_cache.core` is deprecated; please import from `requests_cache`.'
warnings.warn(DeprecationWarning(msg))
|