Files
python/exercises/practice/rest-api/rest_api.py

10 lines
172 B
Python
Raw 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