package net.yak.kiwi;

public interface RadioSink {
    void addAudio(short[] buf);
    void stop();
}
