mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
446 B
23 lines
446 B
2 years ago
|
import sys
|
||
|
|
||
|
from common import (block_input, unblock_input)
|
||
|
from common import convert_base64_to_dict
|
||
|
from app import AppletApplication
|
||
|
|
||
|
|
||
|
def main():
|
||
|
base64_str = sys.argv[1]
|
||
|
data = convert_base64_to_dict(base64_str)
|
||
|
applet_app = AppletApplication(**data)
|
||
|
block_input()
|
||
|
applet_app.run()
|
||
|
unblock_input()
|
||
|
applet_app.wait()
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
try:
|
||
|
main()
|
||
|
except Exception as e:
|
||
|
print(e)
|