Rocky_Mountain_Vending/.pnpm-store/v10/files/37/226a5f3ee0738680a60fa77763917b29b1ad361e692d02c3378cf8f07ced955f63af0a20fc8d37b2598749de7db678b7d825f0fec6dc4b11d68ad730b7924f
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

6 lines
125 B
Text

/**
* Loads a given module for a given ID.
*/
export interface ModuleLoader {
load<M = any>(id: string): Promise<M>;
}