APIClient/garbage_api_client/__init__.py

9 lines
164 B
Python
Raw Permalink Normal View History

2024-05-27 01:04:25 +03:00
""" A client library for accessing GarbageReminder API """
from .client import AuthenticatedClient, Client
__all__ = (
"AuthenticatedClient",
"Client",
)