MBO-Tech-IT-Webseite/lib/supabase.ts

12 lines
481 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// STUB wird ersetzt wenn Supabase eingerichtet ist (Modul: Supabase-Integration)
// Aktuell wirft createServiceClient() einen Fehler email-queue.ts fängt diesen ab.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type SupabaseServiceClient = any;
export function createServiceClient(): SupabaseServiceClient {
throw new Error(
"Supabase noch nicht konfiguriert. lib/supabase.ts implementieren und @supabase/supabase-js installieren."
);
}