mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-04 10:23:37 +00:00
15 lines
241 B
Python
15 lines
241 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
__init__.py
|
||
|
~~~~~~~~~~~
|
||
|
|
||
|
Defines the public API to the httpcache module.
|
||
|
"""
|
||
|
|
||
|
__version__ = '0.1.3'
|
||
|
|
||
|
from .cache import HTTPCache
|
||
|
from .adapter import CachingHTTPAdapter
|
||
|
|
||
|
__all__ = [HTTPCache, CachingHTTPAdapter]
|