marmiha

Results 9 comments of marmiha

Nice, I've pulled your repo and built it. It works, thanks!

> Nice, I've pulled your repo and built it. It works, thanks! Actually not, it tries to delete the wrong file, as the bin path is concated with args

Ive tried to make schema object as such ``` yml openapi: 3.0.3 info: description: test server version: 1.0.0 paths: /tickets/{ticket_id}/accept: post: operationId: acceptTicket security: - RoleAuth: - admin summary: Accept...

It seems to be a problem when you have a content of response of type schema `oneOf`: ``` yml Foo: schema: oneOf: - ref$: 'obj1' - ref$: 'obj2' ``` Generates...

same, I have trouble adding when using chi

I've just added a middleware before the openapi3 authentication function that injects a mutable user context struct, that can be then actually accessed after the authentication call. The auth call...

> `swagger.Servers = openapi3.Servers{&openapi3.Server{URL: "/api/v1"}}` Lord and saviour 🙏.

I think this is the same issue as discussed here: https://github.com/deepmap/oapi-codegen/issues/1122#issuecomment-1726614770 It seems to be a problem when you have a content of response of type schema `oneOf`: ``` yml...