from django.contrib import admin

from apps.contractor.models import Contractor, ContractorType



admin.site.register([Contractor, ContractorType])
