2024-01-25 13:51:47 +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()