mirror of
https://github.com/jlengrand/Ivolution.git
synced 2026-03-10 08:21:18 +00:00
10 lines
173 B
Python
Executable File
10 lines
173 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from gi.repository import Gtk, GObject
|
|
from gui import IvolutionWindow
|
|
|
|
|
|
my_app = IvolutionWindow.IvolutionWindow()
|
|
GObject.threads_init()
|
|
Gtk.main()
|