diff --git a/models/database/feature.py b/models/database/feature.py deleted file mode 100644 index cce38526..00000000 --- a/models/database/feature.py +++ /dev/null @@ -1,22 +0,0 @@ -# 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", -]