from django.contrib import admin
from .models import File,Transcripts

admin.site.register(File)
admin.site.register(Transcripts)



