mirror of
https://github.com/kingomarnajjar/ChatDev.git
synced 2026-07-25 22:27:29 +10:00
11 lines
No EOL
217 B
Python
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() |