Upload other_handler.py
Browse files- other_handler.py +9 -0
other_handler.py
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
class EndpointHandler():
|
4 |
+
|
5 |
+
def __init__(self, path=""):
|
6 |
+
pass
|
7 |
+
|
8 |
+
def __call__(self, data):
|
9 |
+
return 42
|