nett_hier
nett_hier
Also interested in something like this, but I do wonder how that would be implemented with Go being a compiled language.
I didn't think of that, thanks for the idea. I do however still think that this is an issue worth tackling, though the proposed solution of rewriting the Go parser...
In that case I'd prefer the fact that the `auth-url` annotation does not support the same inputs as nginx's `auth_request` (which was my expectation) to be documented.
Also experiencing this in CLion 2025.1.3, it seems like the plugin has stopped working as CLion is unable to find any binaries available through the .envrc
I can't reproduce the issue anymore, seems like it's fixed on my end at least.
No idea about inferring error responses, but I usually explicitly add my errors to documentation by just adding `response`s to a `TransformOperation`, i.e.: ```rust ApiRouter::new() .api_route("/whatever", get_with(whatever_handler, whatever_handler_docs)) // etc....
I'm currently successfully using OpenFGA via a [tonic_build](https://docs.rs/tonic-build/latest/tonic_build/)-generated client.
I don't have it uploaded publicly, and I'm unsure how to properly package that kind of library, but it's not too difficult to set up. I cloned https://github.com/openfga/api and ran...
@liamwh Ah sorry, I dropped `.type_attribute(".", "#[derive(serde::Serialize,serde::Deserialize)]")` from the build configuration because I thought it was specific to my use case. Adding that should derive those traits on the OpenFGA...
PostGIS supports casts between geometries and geographies. Furthermore, you may need to cast the `Point` to a `Geometry` first, as that is what the geozero traits are implemented on. [As...