# app/api/v1/public/__init__.py """ Public API endpoints (non-shop, non-authenticated). Note: Shop-related endpoints have been migrated to /api/v1/shop/* This module now only contains truly public endpoints: - Vendor lookup (by code, subdomain, ID) """ from fastapi import APIRouter from .vendors import vendors # Create public router router = APIRouter() # Include vendor lookup endpoints (not shop-specific) router.include_router(vendors.router, prefix="/vendors", tags=["public-vendors"]) __all__ = ["router"]