from django.contrib import admin
from .models import Car
admin.site.register(Car)
# Register your models here.