dr.botzo/ircbot/forms.py

16 lines
265 B
Python

"""Forms for doing ircbot stuff."""
import logging
from django.forms import Form, CharField
log = logging.getLogger('markov.forms')
class PrivmsgForm(Form):
"""Accept a privmsg to send to the ircbot."""
target = CharField()
message = CharField()