from django.contrib import admin
from .models import Setting, BottomBar

admin.site.register(Setting)
admin.site.register(BottomBar)