mirror of
https://github.com/evgen-app/chess_rpg_backend.git
synced 2024-11-10 19:57:12 +03:00
7 lines
135 B
Python
7 lines
135 B
Python
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
from game.models import HeroImageSet
|
|
|
|
admin.site.register(HeroImageSet)
|