summaryrefslogtreecommitdiff
path: root/gitlab/http_backends/__init__.py
blob: 07b7e80c597b7b22e84964f65ad0d5f9c15f42f3 (plain)
1
2
3
4
5
6
7
"""
Defines http backends for processing http requests
"""

from .requests_backend import RequestsBackend

DefaultBackend = RequestsBackend