# coding=utf-8
from django.contrib import admin
from finance.models import Bill, Invoice
admin.site.register(Bill)
admin.site.register(Invoice)