ChatDev/WareHouse/ToDo_THUNLP_20230825072331/main.py

10 lines
225 B
Python
Raw Normal View History

2023-09-04 14:24:28 +03:00
'''
This is the main file of the todo list application.
It initializes the GUI and starts the application.
'''
from todo_app import TodoApp
def main():
app = TodoApp()
app.start()
if __name__ == "__main__":
main()