Rocky_Mountain_Vending/.pnpm-store/v10/files/9c/360c2c6ba55fb9853ab90bebcec19c9ead82a2292825e4cdfedd32f9da60ff02c50f83276366b647e9da19601b4416a66e6d3f5ab3c75677213236de0b582d
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

15 lines
493 B
Text

import { getGlobalSingleton } from './carrier.js';
import { Scope } from './scope.js';
/** Get the default current scope. */
function getDefaultCurrentScope() {
return getGlobalSingleton('defaultCurrentScope', () => new Scope());
}
/** Get the default isolation scope. */
function getDefaultIsolationScope() {
return getGlobalSingleton('defaultIsolationScope', () => new Scope());
}
export { getDefaultCurrentScope, getDefaultIsolationScope };
//# sourceMappingURL=defaultScopes.js.map