Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/18c2aaf6b53f6d3f7fb19b0e0c1130f7a71eb7c8587feea199eef788c80eadfcc66cd9c9791efa6642a44856da3fd4d8d6b63566a816d043a7dfe06a799ee7
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

16 lines
365 B
Text

import { Domain } from "./internal/domain/domain.mjs";
export { Domain } from "./internal/domain/domain.mjs";
export const create = function() {
return new Domain();
};
export const createDomain = create;
const _domain = create();
export const active = () => _domain;
export const _stack = [];
export default {
Domain,
_stack,
active,
create,
createDomain
};