from django import forms

from .models import Contact


class ContactForm(forms.ModelForm):
    pass
