Rocky_Mountain_Vending/.pnpm-store/v10/files/86/f8559039ff3213285b2a881043c387e2963f8af3c900664c47d33a5974410592dfd6b5168d4826abfd1a11f9b7eb74eae320c342190e156c53ad19f33bcfbe
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
263 B
Text

import OpenAI from 'openai'
import Hook from '../../index.js'
Hook((exports, name) => {
if (name === 'openai') {
console.assert(name, exports)
}
})
console.assert(OpenAI)
const openAI = new OpenAI({
apiKey: 'doesnt-matter'
})
console.assert(openAI)