Acrobits Web Services. You have to overwrite functions in main.py file.
async def get_balance(params: websvc.Params) -> balance.Balance:
raise HTTPException(status.HTTP_501_NOT_IMPLEMENTED)async def get_contacts(params: contacts.Params) -> contacts.Contacts:
raise HTTPException(status.HTTP_501_NOT_IMPLEMENTED)async def get_rate(params: rate.Params) -> rate.Rate:
raise HTTPException(status.HTTP_501_NOT_IMPLEMENTED)$ makeor
$ make dockerTo run localhost:
$ ./run.shTo run in docker:
$ docker-compose up -d