# app/modules/customers/__init__.py """ Customers Module - Customer database and management. This module provides: - Customer profiles and contact information - Customer segmentation and tags - Purchase history tracking - Customer exports Routes: - Admin: /api/v1/admin/customers/* - Vendor: /api/v1/vendor/customers/* Menu Items: - Admin: customers - Vendor: customers """ from app.modules.customers.definition import customers_module __all__ = ["customers_module"]