Isaac Whitfield
Isaac Whitfield
Initially this could be some basic sugar in a macro that just binds all methods (which sucks). In future we could add support for some sort of compact type to...
Originally I felt this was unnecessary, but the currently implementation lends itself well to a builder as there are several advantages of a final `build()` call. - We can drop...
Currently all captures are `Vec`. This is probably the most efficient way we can go by default, but it's not particularly friendly for those who need to then change this...
One feature that other routers seem to like is the ability to plug a new router in as a delegate, rather than just routes themselves. If I create paths `/a`,...
I am attempting to migrate to Umami from Mixpanel, due to MIxpanel's new data retention rules. Everything is setup and went fairly smoothly, so for my next step I wanted...
Hi there :) cool library! I'm hoping to use it for a project, and had a question... I'm wondering if there's any chance of supporting MongoDB indexing as a `Meta`...
I've noticed that the latest release was many years ago, but there's a lot of fun new stuff in the main branch. Unfortunately there's a dependency on `@cfn-include/utils` which appears...
Tags are optional in the checks themselves, but currently they are enforced in the response and so you end up with a lot of empty lists for no reason :)...
Currently the interfaces require `connectionUri`, but this only makes sense in a few cases and so I think this shouldn't be something that's in the interface itself (just the implementation...
This updates the handler with a brief docstring, and adds a response model for the autogenerated OpenAPI documentation by FastAPI. I also updated the values of the enum to have...