t__init__.py - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
t__init__.py (375B)
---
1 # To create a new GUI, please add its code to this directory.
2 # Three objects are passed to the ElectrumGui: config, daemon and plugins
3 # The Wallet object is instantiated by the GUI
4
5 # Notifications about network events are sent to the GUI by using network.register_callback()
6
7 from typing import TYPE_CHECKING
8
9 if TYPE_CHECKING:
10 from . import qt
11 from . import kivy