mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2024-11-07 18:40:13 +03:00
10 lines
225 B
Python
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()
|