from django.contrib import admin
from .models import Category, PartitionSet
admin.site.register(Category)
admin.site.register(PartitionSet)