crawlerApp/githubCrawler/admin.py

6 lines
132 B
Python
Raw Normal View History

2022-02-05 21:35:04 +00:00
from django.contrib import admin
from .models import GithubCrawler
# Register your models here.
admin.site.register(GithubCrawler)