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>
32 lines
629 B
Text
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();
|
|
}
|
|
}
|