14 lines
310 B
Python
14 lines
310 B
Python
|
"""This module is for thread start."""
|
||
|
import state
|
||
|
import sys
|
||
|
from bitmessagemain import main
|
||
|
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()
|