Skip to content

Commit

Permalink
Merge pull request #34 from solvedac/dev
Browse files Browse the repository at this point in the history
Fix some bugs
  • Loading branch information
dev-ruby authored Apr 11, 2024
2 parents bc938f6 + 371cf5c commit 431baca
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions solvedac_community/HTTPClients/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,17 @@
from .httpclient import get_http_client

__all__ = ["AbstractHTTPClient", "RequestMethod", "ResponseData", "Route", "get_http_client"]

try:
from .aiohttp_client import AiohttpHTTPClient

__all__.append("AiohttpHTTPClient")
except ImportError:
pass

try:
from .httpx_client import HttpxHTTPClient

__all__.append("HttpxHTTPClient")
except ImportError:
pass

0 comments on commit 431baca

Please sign in to comment.