OSD-Frontend/src/plugins/index.js

9 lines
160 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-20 20:19:50 +01:00
export default {
mpd: Mpd,
weather: Weather,
warning: Warning,
2020-12-20 20:19:50 +01:00
};