7 lines
159 B
Python
7 lines
159 B
Python
# -*- coding: utf-8 -*-
|
|
from django.contrib import admin
|
|
from githubnetwork.models import GHUser, Repo
|
|
|
|
|
|
admin.site.register(GHUser)
|
|
admin.site.register(Repo)
|