Rocky_Mountain_Vending/.pnpm-store/v10/files/10/ccdd04c328a09369493075f7acd103d0a5f15c3cbe031aba5532222b0c0eb68d039707e142d71ddb14d1c8ae83d1d0f95dc1c2683fda81350ec500459e3725
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

4 lines
295 B
Text

import { createPaginator } from "@smithy/core";
import { ListBucketsCommand } from "../commands/ListBucketsCommand";
import { S3Client } from "../S3Client";
export const paginateListBuckets = createPaginator(S3Client, ListBucketsCommand, "ContinuationToken", "ContinuationToken", "MaxBuckets");