from django.contrib import admin

from facts.models import Fact, FactCategory


admin.site.register(Fact)
admin.site.register(FactCategory)