Hi,
I'm learning how to use Fiber and I'm trying to find how to pass my SQL database object to my handlers. When I look it up I see a lot of very roundabout solutions for how to do it (wrap handlers in a closure, put your handlers in a struct, etc.). Like for example in Rust's axum you can pass it as an additional parameter in the handler function. I also saw you can just make your database a global variable but I was wondering if there's a proper clean way to do it? Thanks