Open slekup opened 2 weeks ago
@slekup How did you register those 2 handlers? Did you use axum or what library you are using? Just based on above statement it is impossible to tell what is possibly wrong and where.
I am using axum. I'm registering them like:
OpenApiRouter::new()
.routes(routes!(update_user::update_user_handler))
.routes(routes!(delete_user::delete_user_handler))
If I have two routes, like:
only one of them registers. If I change the path of one of them to something different, both of them register.
How could I register both of them with the same path, but different methods? Or is this a bug?