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

from .requests_backend import RequestsBackend, RequestsResponse

DefaultBackend = RequestsBackend
DefaultResponse = RequestsResponse