1
0
mirror of https://github.com/peterantypas/maiana.git synced 2025-06-02 07:40:13 -07:00
2022-01-30 15:32:28 -08:00

10 lines
160 B
Python

import wx
from mainwindow import MainWindow
if __name__ == '__main__':
app = wx.App()
window = MainWindow()
window.Show(True)
app.MainLoop()