Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions descope/_auth_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ class AuthBase:

def __init__(self, auth: Auth):
self._auth = auth
self._http = auth.http_client
10 changes: 10 additions & 0 deletions descope/_http_base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from __future__ import annotations

from descope.http_client import HTTPClient


class HTTPBase:
"""Base class for classes that only need HTTP access."""

def __init__(self, http_client: HTTPClient):
self._http = http_client
Loading
Loading