Brad Fol
Brad Fol
@todbot After a bit more digging, this seems to be an interaction with the [bleno](https://github.com/sandeepmistry/bleno) library. Here is the smallest test case I could make to reproduce the issue: ```...
@todbot Yes, the listener on the EventEmitter will keep the process running until it is removed. I understand that is expected behavior. What I am describing is that the Node...
@todbot Can you run the same simple example but also install `bleno` and add `require("bleno");` to load that module as well. Then see if the app still responds to SIGINT?...
Was also looking into how this feature might exist in Swinject. Agreed that a `container.registerIntoSet()` method seems like the right way to go about it.
So I recently learned that this functionality is possible with existing Swinject by using a custom Behavior on the container. This is actually one of the examples used in the...
Are you using the SPM package to create the xcframework? Something else?
Please reopen if this is still an issue, thank you.
Could you also include a bit more information about your registration set up? It's not entirely clear to me why resolving `MockApi` directly doesn't work for your situation? Somewhat separate...
It seems like you could modify your registration to include `.implements(MockSoundProvider.self)` which then means resolving either `SoundPlayerProviding` or `MockSoundProvider` would produce the same object. ``` public extension Container { func...