Easy to connect a synth to a AudioKit compressor like...
compressor = AKCompressor(akMidiSampler)
Instead of this I need to connect after the initializer...
compressor = AKCompressor()
...
How can I connect this AKMidiSampler to the compressor after the initializer ?