blob: f33d63646296971de02890c40f67e00ff2a9c14d [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @fileoverview Main JS Module for Audio Player. It replaces
* audio_player_scripts.js
*/
import {AudioPlayer, reload, unload} from './audio_player.m.js';
window.reload = reload;
window.unload = unload;
window.AudioPlayer = AudioPlayer;
console.log('AudioPlayer main.m.js loaded');