# models/database/feature.py """ DEPRECATED: This module re-exports from the canonical location. Feature is now part of the billing module. Please update imports to use: from app.modules.billing.models import Feature, FeatureCode, FeatureCategory, FeatureUILocation """ from app.modules.billing.models import ( Feature, FeatureCategory, FeatureCode, FeatureUILocation, ) __all__ = [ "Feature", "FeatureCategory", "FeatureCode", "FeatureUILocation", ]