Initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from LSP.plugin import register_plugin
|
||||
from LSP.plugin import unregister_plugin
|
||||
|
||||
from .plugin import ScryerProlog
|
||||
|
||||
__all__ = (
|
||||
# ST: Core
|
||||
"plugin_loaded",
|
||||
"plugin_unloaded",
|
||||
)
|
||||
|
||||
|
||||
def plugin_loaded() -> None:
|
||||
register_plugin(ScryerProlog)
|
||||
|
||||
|
||||
def plugin_unloaded() -> None:
|
||||
unregister_plugin(ScryerProlog)
|
||||
Reference in New Issue
Block a user