from django.contrib import admin

from apps.vendor.models import Vendor, VendorType



admin.site.register([Vendor, VendorType])
