2018-07-03 16:00:19 +02:00
|
|
|
"""This module is for thread start."""
|
2018-07-05 15:37:16 +02:00
|
|
|
import state
|
2021-01-16 18:16:12 +01:00
|
|
|
import sys
|
2020-01-24 15:03:13 +01:00
|
|
|
from bitmessagemain import main
|
2021-01-16 18:16:12 +01:00
|
|
|
from termcolor import colored
|
|
|
|
print(colored('kivy is not supported at the moment for this version..', 'red'))
|
|
|
|
sys.exit()
|
|
|
|
|
2018-07-03 11:08:02 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2018-07-05 15:37:16 +02:00
|
|
|
state.kivy = True
|
|
|
|
print("Kivy Loading......")
|
2018-07-03 11:08:02 +02:00
|
|
|
main()
|