fHDHR_STIRR/fHDHR_web/api/test.py
deathbybandaid f5903aa104 test
2020-12-16 09:03:32 -05:00

22 lines
397 B
Python

from flask import request, redirect, Response, abort
import urllib.parse
import json
class Test():
endpoints = ["/test"]
endpoint_name = "test"
endpoint_methods = ["GET", "POST"]
def __init__(self, fhdhr):
self.fhdhr = fhdhr
def __call__(self, *args):
return self.get(*args)
def get(self, *args):
print("here I am ")
return "Success"