1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00
Files
vcrpy/vcr/__init__.py
2013-08-19 19:49:05 -10:00

7 lines
204 B
Python

# Import Cassette to make it available at the top level
from .cassette import Cassette
# Also, make a 'load' function available
def use_cassette(path, **kwargs):
return Cassette.load(path, **kwargs)