from django.contrib import admin
from .models import Product, Feature
admin.site.register(Product)
admin.site.register(Feature)