2022-05-17 11:13:32 +02:00
|
|
|
#!/usr/bin/env python3
|
2022-05-17 11:40:52 +02:00
|
|
|
"""TMTC commander for EIVE"""
|
2022-05-17 11:13:32 +02:00
|
|
|
from tmtcc import tmtcc_post_args, tmtcc_pre_args
|
2020-12-17 17:50:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2022-05-17 11:13:32 +02:00
|
|
|
hook_obj = tmtcc_pre_args()
|
|
|
|
tmtcc_post_args(hook_obj=hook_obj, use_gui=True, args=None)
|
2020-12-17 17:50:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|