Rocky_Mountain_Vending/.pnpm-store/v10/files/fb/42716af416907205aa0eef8d0630c45364795adcce880bc081581b0103572015ffc2b7ca45aca9b904143084a4db542c6ba60003383a3e016b350e4a371ad4
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

12 lines
317 B
Text

import noop from "../mock/noop.mjs";
import { Socket } from "./internal/dgram/socket.mjs";
export { Socket } from "./internal/dgram/socket.mjs";
export const _createSocketHandle = noop;
export const createSocket = function() {
return new Socket();
};
export default {
Socket,
_createSocketHandle,
createSocket
};