Skip to content

Commit eae626f

Browse files
committed
remove redundant client.py
1 parent 7651226 commit eae626f

File tree

2 files changed

+26
-24
lines changed

2 files changed

+26
-24
lines changed

supabase/client.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

supabase/client/__init__.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
from postgrest import APIError as PostgrestAPIError
3+
from postgrest import APIResponse as PostgrestAPIResponse
4+
from storage3.utils import StorageException
5+
6+
7+
from ..__version__ import __version__
8+
from ..lib.realtime_client import SupabaseRealtimeClient
9+
from .auth import AuthClient
10+
from .default import ClientOptions, create_client
11+
from .default import SupabaseClient
12+
from .default import SyncStorageClient as SupabaseStorageClient
13+
14+
15+
__all__ = [
16+
"__version__",
17+
"create_client",
18+
"AuthClient",
19+
"ClientOptions",
20+
"PostgrestAPIError",
21+
"PostgrestAPIResponse",
22+
"StorageException",
23+
"SupabaseClient",
24+
"SupabaseRealtimeClient",
25+
"SupabaseStorageClient"
26+
]

0 commit comments

Comments
 (0)