Rocky_Mountain_Vending/.pnpm-store/v10/files/f8/343ac1b9ba4ff71da9feb19b14282d55b2fead949aa00f8689b4d26283d574110398272bdcd5a08d0b1f51ba0c4572fb7493adfe6ab0fc11725fd66ead3207
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

18 lines
643 B
Text

Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const carrier = require('./carrier.js');
const scope = require('./scope.js');
/** Get the default current scope. */
function getDefaultCurrentScope() {
return carrier.getGlobalSingleton('defaultCurrentScope', () => new scope.Scope());
}
/** Get the default isolation scope. */
function getDefaultIsolationScope() {
return carrier.getGlobalSingleton('defaultIsolationScope', () => new scope.Scope());
}
exports.getDefaultCurrentScope = getDefaultCurrentScope;
exports.getDefaultIsolationScope = getDefaultIsolationScope;
//# sourceMappingURL=defaultScopes.js.map