from django.contrib import admin
from .models import ArrowCount, Target
admin.site.register(ArrowCount)
admin.site.register(Target)