Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/304e04d1965a4fc1c1b8579e73d14e52d3e2426891a9574f51a2c15dccf27cb3b44c9a71eb0dfe4a71f43726cea7ace291b89976c8b82aea06e9b656a1e435
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

20 lines
252 B
Text

export class Readline {
clearLine(dir) {
return this;
}
clearScreenDown() {
return this;
}
commit() {
return Promise.resolve();
}
cursorTo(x, y) {
return this;
}
moveCursor(dx, dy) {
return this;
}
rollback() {
return this;
}
}