rogueojiiofwales/githubnetwork/admin.py
2012-08-18 17:57:24 +02:00

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)