llc
llc
In fact, this is to address intentionally the same endpoint(#127).
To maintain compatibility, I suggest concatenating the blueprint name with the function name, or you can think of a better approach. Hope you have time to submit a PR. e.g....
https://github.com/luolingchun/flask-openapi3/blob/master/flask_openapi3/blueprint.py#L166 `self.name` is blueprint name, you can concatenate `self.name` and `func.__name__`
Yes, the current situation is like this. What I mean is that you should submit a PR to concatenate `self.name` and `func.__name__`, and then the callback function can receive the...
Temporary solution: ```python driver = webdriver.Edge( service=Service( executable_path=EdgeChromiumDriverManager( url="https://msedgedriver.microsoft.com/", latest_release_url="https://msedgedriver.microsoft.com/LATEST_RELEASE" ).install()), options=options ) ```