mixr-api/api_v1/admin.py

7 lines
136 B
Python
Raw Normal View History

2024-02-25 19:16:55 +01:00
from django.contrib import admin
2024-02-28 20:43:45 +01:00
from api_v1.profile.profile import Profile
2024-02-25 19:16:55 +01:00
# Register your models here.
2024-02-28 20:43:45 +01:00
admin.site.register(Profile)
2024-02-25 19:16:55 +01:00