ChatDev/WareHouse/test_demo_DefaultOrganization_20231022225548/main.py
2023-10-23 10:54:37 +08:00

11 lines
No EOL
217 B
Python

'''
This is the main file that runs the demo.
'''
import tkinter as tk
from demo_gui import DemoGUI
def main():
root = tk.Tk()
demo_gui = DemoGUI(root)
root.mainloop()
if __name__ == "__main__":
main()