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:
11
src/lib/supabase/index.ts
Normal file
11
src/lib/supabase/index.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
// 메인 내보내기 파일
|
||||
|
||||
// Supabase 클라이언트 내보내기
|
||||
export { supabase } from './client';
|
||||
|
||||
// 설정 관련 유틸리티 내보내기
|
||||
export { configureSupabase } from './config';
|
||||
|
||||
// 테스트 도구 내보내기
|
||||
export { testSupabaseLogin, testSupabaseConnection } from './tests';
|
||||
Reference in New Issue
Block a user