from django.contrib import admin
from .models import Subscription, UsageStats

admin.site.register(Subscription)
admin.site.register(UsageStats)
