Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Feature Request: API Version management #31

Open
daviddylegowski opened this issue Jul 1, 2019 · 0 comments
Open

Feature Request: API Version management #31

daviddylegowski opened this issue Jul 1, 2019 · 0 comments

Comments

@daviddylegowski
Copy link

A best practice when developing APIs is versioning, and it's part of the EAB API standards. Minik currently doesn't have a standard way of implementing API versioning. This request is to add it.

One way of doing this is how Hug has implemented it, which appears to be fairly easy to manage within the API method decorators:
@hug.get('/echo', versions=range(2, 5))
def echo(text):
return 'Echo: {text}'.format(**locals())

https://www.hug.rest/

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant