Skip to content

Commit

Permalink
refactor: drop pydantic and support blocking
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix committed Mar 3, 2025
1 parent a4b2d16 commit 1379d1b
Show file tree
Hide file tree
Showing 5 changed files with 487 additions and 347 deletions.
13 changes: 13 additions & 0 deletions gel/auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

from . import email_password
from .token_data import TokenData
from .pkce import PKCE, generate_pkce, AsyncPKCE, generate_async_pkce

__all__ = [
"email_password",
"TokenData",
"PKCE",
"generate_pkce",
"AsyncPKCE",
"generate_async_pkce",
]
Loading

0 comments on commit 1379d1b

Please sign in to comment.