Files

10 lines
172 B
Python
Raw Permalink Normal View History

class RestAPI:
def __init__(self, database=None):
pass
def get(self, url, payload=None):
pass
def post(self, url, payload=None):
pass