6 lines
86 B
Python
6 lines
86 B
Python
from django.contrib import admin
|
|
|
|
from .models import File
|
|
|
|
admin.site.register(File)
|