OSD-Frontend/src/plugins/index.js

11 lines
207 B
JavaScript
Raw Normal View History

2020-12-20 20:19:50 +01:00
import Mpd from "./mpd";
import Weather from "./weather";
import Warning from "./warning";
2020-12-21 12:56:58 +01:00
import Manual from "./manual";
2020-12-20 20:19:50 +01:00
export default {
mpd: Mpd,
weather: Weather,
warning: Warning,
2020-12-21 12:56:58 +01:00
manual: Manual
2020-12-20 20:19:50 +01:00
};