mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-10 23:42:50 +01:00
17 lines
251 B
JavaScript
17 lines
251 B
JavaScript
//
|
|
// Class: Abstract plugin base class.
|
|
//
|
|
window.PluginBase = class{
|
|
constructor(){}
|
|
run(){}
|
|
};
|
|
|
|
//
|
|
// Variable: Main object for containing and managing plugins.
|
|
//
|
|
window.TD_PLUGINS = {
|
|
install: function(plugin){
|
|
plugin.obj.run();
|
|
}
|
|
};
|