Refactor supabase.ts into modules

Refactor the supabase.ts file into smaller modules, separating test functionalities and default client configurations while preserving all code functionalities.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 12:12:07 +00:00
parent 3a14914482
commit 2493f958de
5 changed files with 291 additions and 267 deletions

11
src/lib/supabase/index.ts Normal file
View File

@@ -0,0 +1,11 @@
// 메인 내보내기 파일
// Supabase 클라이언트 내보내기
export { supabase } from './client';
// 설정 관련 유틸리티 내보내기
export { configureSupabase } from './config';
// 테스트 도구 내보내기
export { testSupabaseLogin, testSupabaseConnection } from './tests';