PyBitmessage-2021-04-27/src/main.py

14 lines
310 B
Python
Raw Normal View History

"""This module is for thread start."""
import state
2021-01-16 17:16:12 +00:00
import sys
from bitmessagemain import main
2021-01-16 17:16:12 +00:00
from termcolor import colored
print(colored('kivy is not supported at the moment for this version..', 'red'))
sys.exit()
if __name__ == '__main__':
state.kivy = True
print("Kivy Loading......")
main()