Rocky_Mountain_Vending/.pnpm-store/v10/files/86/8ec9ce8569825fde32141ee511a2550d9f3fca39c3f3afd20b2237e81b44bf60831d68f12fbf07f5f521ebe3fa40834cf24b518250610f8fe7234f75c0eb63
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

16 lines
377 B
Text

import { Schema } from "./Schema";
export class OperationSchema extends Schema {
static symbol = Symbol.for("@smithy/ope");
name;
traits;
input;
output;
symbol = OperationSchema.symbol;
}
export const op = (namespace, name, traits, input, output) => Schema.assign(new OperationSchema(), {
name,
namespace,
traits,
input,
output,
});