"""Manage countdown models in the admin interface."""

from django.contrib import admin

from countdown.models import CountdownItem


admin.site.register(CountdownItem)