from django.contrib import admin

from apps.user.models import User, Role, Permission


admin.site.register([User, Role, Permission])
