Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Closed
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
2 changes: 1 addition & 1 deletion docs/source/api/api.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
API
======

.. autoclass:: gotrue._async.api.AsyncGoTrueAPI
.. autoclass:: gotrue._async.gotrue_admin_api.AsycnGoTrueAdminAPI
:inherited-members:
6 changes: 3 additions & 3 deletions gotrue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

__version__ = "0.5.4"

from ._async.api import AsyncGoTrueAPI
from ._async.client import AsyncGoTrueClient
from ._async.gotrue_admin_api import AsyncGoTrueAdminAPI
from ._async.storage import AsyncMemoryStorage, AsyncSupportedStorage
from ._sync.api import SyncGoTrueAPI
from ._sync.client import SyncGoTrueClient
from ._sync.gotrue_admin_api import SyncGoTrueAdminAPI
from ._sync.storage import SyncMemoryStorage, SyncSupportedStorage
from .types import *

Client = SyncGoTrueClient
GoTrueAPI = SyncGoTrueAPI
GoTrueAPI = SyncGoTrueAdminAPI
Loading