mirror of
https://github.com/AudebertAdrien/ft_transcendence.git
synced 2025-12-17 22:47:49 +01:00
8 lines
148 B
Python
8 lines
148 B
Python
from django.contrib import admin
|
|
|
|
# Register your models here.
|
|
from .models import Player
|
|
|
|
# Register your models here.
|
|
admin.site.register(Player)
|