init
This commit is contained in:
parent
be5fb603f3
commit
859fb7a19d
11 changed files with 436 additions and 0 deletions
5
app/services/supabase_service.py
Normal file
5
app/services/supabase_service.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
from supabase import create_client, Client
|
||||
from app.config import SUPABASE_URL, SUPABASE_KEY
|
||||
|
||||
def get_supabase_client() -> Client:
|
||||
return create_client(SUPABASE_URL, SUPABASE_KEY)
|
||||
Loading…
Add table
Add a link
Reference in a new issue