from django.contrib import admin
from .models import Vote, Voter
admin.site.register(Vote)
admin.site.register(Voter)