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

9 lines
193 B
Python

'''
This is the main file that runs the MS Paint application.
'''
from paint_app import PaintApp
def main():
paint_app = PaintApp()
paint_app.run()
if __name__ == "__main__":
main()