dr.botzo/dr_botzo/twitter/admin.py
Brian S. Stephan 76e9046549 port twitter module to ircbot v2
handles the on-demand commands but no timeline polling
2015-06-16 20:27:44 -05:00

9 lines
165 B
Python

"""Manage twitter models in the admin interface."""
from django.contrib import admin
from twitter.models import TwitterClient
admin.site.register(TwitterClient)