12 lines
481 B
TypeScript
12 lines
481 B
TypeScript
// 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."
|
||
);
|
||
}
|