openapi-typescript-fetch
openapi-typescript-fetch copied to clipboard
Variable baseUrl
I'm working on a project where we talk to many different instances of the same API that live on different hosts. Currently, it seems like I have to create separate Fetcher for each host, which ends up making our code pretty awkward. I'm not sure the best way to handle this, but I have two ideas.
- Expose an option to pass in the baseUrl somehow in the fetch
- Provide an alternative api that doesn't require you to create a
Fetcherbefore calling an endpoint