from django.contrib import admin

from .models import Leave, Holiday

admin.site.register(Leave)

admin.site.register(Holiday)
