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

Feature Request: API Version management #31

Description

@daviddylegowski

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/

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions