Rocky_Mountain_Vending/.pnpm-store/v10/files/81/4bff4ad2158f10538a6631a438f27f41273f5048ab937ecacb4c36affbd8f8ee3aa07d50efca728bb8d9f17016bd983e25d616135edd772525c5ccd32fb531
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

32 lines
629 B
Text

import { createNotImplementedError } from "../../../_internal/utils.mjs";
import { EventEmitter } from "node:events";
export class Server extends EventEmitter {
__unenv__ = true;
maxConnections = 1;
connections = 0;
listening = false;
constructor(arg1, arg2) {
super();
}
listen() {
throw createNotImplementedError("node:net.Server.listen()");
}
close(callback) {
throw createNotImplementedError("node:net.Server.close()");
}
address() {
return null;
}
getConnections(cb) {
cb(null, 0);
}
ref() {
return this;
}
unref() {
return this;
}
[Symbol.asyncDispose]() {
return Promise.resolve();
}
}