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>
35 lines
613 B
Text
35 lines
613 B
Text
'use strict'
|
|
|
|
module.exports = class DecoratorHandler {
|
|
constructor (handler) {
|
|
this.handler = handler
|
|
}
|
|
|
|
onConnect (...args) {
|
|
return this.handler.onConnect(...args)
|
|
}
|
|
|
|
onError (...args) {
|
|
return this.handler.onError(...args)
|
|
}
|
|
|
|
onUpgrade (...args) {
|
|
return this.handler.onUpgrade(...args)
|
|
}
|
|
|
|
onHeaders (...args) {
|
|
return this.handler.onHeaders(...args)
|
|
}
|
|
|
|
onData (...args) {
|
|
return this.handler.onData(...args)
|
|
}
|
|
|
|
onComplete (...args) {
|
|
return this.handler.onComplete(...args)
|
|
}
|
|
|
|
onBodySent (...args) {
|
|
return this.handler.onBodySent(...args)
|
|
}
|
|
}
|