Rocky_Mountain_Vending/.pnpm-store/v10/files/52/21b14deeff9b10c92c9ddfc5a1d44c523d8d9fafe931f7ffb2acb163b61e3b83955a3b1b6fe94ea6f6622794d263e0616e2c9aa614a93121228fb78a1af357
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

13 lines
371 B
Text

export class DefaultIdentityProviderConfig {
authSchemes = new Map();
constructor(config) {
for (const [key, value] of Object.entries(config)) {
if (value !== undefined) {
this.authSchemes.set(key, value);
}
}
}
getIdentityProvider(schemeId) {
return this.authSchemes.get(schemeId);
}
}