IntegrationLoader Class — supabase Architecture
Architecture documentation for the IntegrationLoader class in partner-integrations.ts from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/docs/scripts/search/sources/partner-integrations.ts lines 33–47
export class IntegrationLoader extends BaseLoader {
type = 'partner-integration' as const
constructor(
source: string,
public partnerData: PartnerData
) {
const relPath = `/partners/integrations/${partnerData.slug}`
super(source, relPath)
}
async load() {
return [new IntegrationSource(this.source, this.path, this.partnerData)]
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free