mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 03:03:21 +00:00
7 lines
128 B
Python
7 lines
128 B
Python
from django.contrib import admin
|
|
|
|
from counter.models import Counter
|
|
|
|
# Register your models here.
|
|
admin.site.register(Counter)
|