This commit is contained in:
KienVT9 2025-05-22 18:21:03 +07:00
parent be5fb603f3
commit 859fb7a19d
11 changed files with 436 additions and 0 deletions

View 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)