mirror of
https://github.com/kennethreitz-archive/django-piston-xauth.git
synced 2026-06-05 23:40:17 +00:00
7 lines
98 B
Python
7 lines
98 B
Python
from django import forms
|
|
|
|
|
|
class EchoForm(forms.Form):
|
|
msg = forms.CharField(max_length=128)
|
|
|