PY-27241: use django skeletons instead of java code

This commit is contained in:
Ilya.Kazakevich
2017-12-04 03:33:57 +03:00
parent db1f9ce026
commit 670ce0d028
@@ -0,0 +1,10 @@
# coding=utf-8
from django.core.handlers.wsgi import WSGIRequest
class View(object):
def __init__(self, *args, **kwargs):
self.request = WSGIRequest() if False else None
self.args = list()
self.kwargs = dict()