13 lines
253 B
Python
Executable File
13 lines
253 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""TMTC commander for EIVE"""
|
|
from tmtcc import tmtcc_post_args, tmtcc_pre_args
|
|
|
|
|
|
def main():
|
|
hook_obj = tmtcc_pre_args()
|
|
tmtcc_post_args(hook_obj=hook_obj, use_gui=True, args=None)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|