wp-cal-integration/adapters/__init__.py

12 lines
172 B
Python
Raw Permalink Normal View History

2022-09-28 15:52:52 +02:00
from .google import Google
from .wordpress import Wordpress
from .wordpress import CalendarMetadata
__all__ = [
'Google',
'Wordpress',
'CalendarMetadata',
]