Moved unused / example plugins to outside src.

This commit is contained in:
Core 2022-02-04 03:27:25 +00:00
parent e0cc0b2f7c
commit e9b960f71f
No known key found for this signature in database
GPG key ID: FE9BF1B547F8F3C6
2 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,5 @@
let i = 1, k = 1;
export default class ExamplePlugin {
class ExamplePlugin {
/**
* Private variables for interaction in plugins
*/
@ -58,3 +58,5 @@ export default class ExamplePlugin {
}
}
module.exports = ExamplePlugin;

View file

@ -1,4 +1,4 @@
export default class sendSongToTitlebar {
class sendSongToTitlebar {
/**
* Base Plugin Details (Eventually implemented into a GUI in settings)
*/
@ -34,4 +34,6 @@ export default class sendSongToTitlebar {
* @param attributes Music Attributes
*/
onNowPlayingItemDidChange(attributes: object): void {}
}
}
module.exports = sendSongToTitlebar;