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