WebSockets: rename ArdourMessageChannel to MessageChannel

This commit is contained in:
Luciano Iam 2020-04-12 11:29:01 +02:00 committed by Robin Gareus
parent 198590bc94
commit a51ce18334
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
3 changed files with 5 additions and 5 deletions

View file

@ -16,12 +16,12 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
import { ArdourMessageChannel } from './channel.js';
import { MessageChannel } from './channel.js';
export class Ardour {
constructor () {
this.channel = new ArdourMessageChannel(location.host);
this.channel = new MessageChannel(location.host);
}
async open () {