8 lines
129 B
Python
8 lines
129 B
Python
from django.contrib import admin
|
|
|
|
from stats.models import Snapshot
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(Snapshot)
|