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>
12 lines
317 B
Text
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
|
|
};
|