eive-tmtc/tmtcgui.py

13 lines
253 B
Python
Raw Normal View History

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-07-04 15:22:53 +02:00
from tmtcc import tmtcc_post_args, tmtcc_pre_args
2022-05-23 18:25:25 +02:00
2020-12-17 17:50:00 +01:00
def main():
2022-05-17 11:13:32 +02:00
hook_obj = tmtcc_pre_args()
2022-05-30 13:31:11 +02:00
tmtcc_post_args(hook_obj=hook_obj, use_gui=True, args=None)
2020-12-17 17:50:00 +01:00
if __name__ == "__main__":
main()