mirror of
https://gitlab.com/RemixDev/deemix-py.git
synced 2025-01-01 12:46:11 +00:00
9 lines
156 B
Python
9 lines
156 B
Python
#!/usr/bin/env python3
|
|
import wx
|
|
from deemix.ui.MainFrame import MainFrame
|
|
|
|
if __name__ == '__main__':
|
|
app = wx.App()
|
|
frame = MainFrame()
|
|
app.MainLoop()
|