-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79b78de
commit 5d0f497
Showing
54 changed files
with
2,237 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
from ovos_plugin_manager.utils import load_plugin, find_plugins, PluginTypes | ||
from ovos_plugin_manager.utils import PluginTypes | ||
from ovos_plugin_manager.plugin_entry import OpenVoiceOSPlugin | ||
from ovos_utils.log import LOG | ||
|
||
|
||
def find_plugins(*args, **kwargs): | ||
# TODO: Deprecate in 0.1.0 | ||
LOG.warning("This reference is deprecated. " | ||
"Import from ovos_plugin_manager.utils directly") | ||
from ovos_plugin_manager.utils import find_plugins | ||
return find_plugins(*args, **kwargs) | ||
|
||
|
||
def load_plugin(*args, **kwargs): | ||
# TODO: Deprecate in 0.1.0 | ||
LOG.warning("This reference is deprecated. " | ||
"Import from ovos_plugin_manager.utils directly") | ||
from ovos_plugin_manager.utils import load_plugin | ||
return load_plugin(*args, **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.