mirror of https://github.com/ConsenSys/mythril
parent
7f03422026
commit
27aff199e9
@ -1,6 +1,14 @@ |
||||
# We use RsT document formatting in docstring. For example :param to mark parameters. |
||||
# See PEP 287 |
||||
__docformat__ = "restructuredtext" |
||||
import logging |
||||
|
||||
# Accept mythril.VERSION to get mythril's current version number |
||||
from .__version__ import __version__ as VERSION # NOQA |
||||
from mythril.plugin.loader import MythrilPluginLoader |
||||
|
||||
log = logging.getLogger(__name__) |
||||
|
||||
# Initialise core Mythril Components |
||||
log.info("Initializing core Mythril components") |
||||
_ = MythrilPluginLoader() |
||||
|
Loading…
Reference in new issue