Files
python/exercises/practice/rest-api/rest_api.py
2021-01-29 11:14:36 -05:00

10 lines
172 B
Python

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