ChatDev/WareHouse/ToDo_THUNLP_20230825072331/main.py
2023-09-04 19:24:28 +08:00

10 lines
225 B
Python

'''
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()