Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomer Filiba committed Apr 17, 2012
0 parents commit d6eddce
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.project
.pydevproject
*.pyc
__pycache__


28 changes: 28 additions & 0 deletions httptools/httptools.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
class HttpRequest(object):
def __init__(self):
pass

class HttpResponse(object):
pass

class HttpException(Exception):
def __init__(self, status, body, code = 500):
pass

class HttpServer(object):
def __init__(self, host, port, urlmap):
pass

class Resource(object):
pass

class XCLI(Resource):
def default(self, req):
pass
def connect(self, req):
pass
def disconnect(self, req):
pass
def invoke(self, req):
pass

Empty file added httptools/setup.py
Empty file.

0 comments on commit d6eddce

Please sign in to comment.