mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
8 lines
133 B
Python
8 lines
133 B
Python
from .config import VCR
|
|
|
|
default_vcr = VCR()
|
|
|
|
|
|
def use_cassette(path, **kwargs):
|
|
return default_vcr.use_cassette(path, **kwargs)
|