14 lines
182 B
Python
14 lines
182 B
Python
import gui
|
|
|
|
class SvgExportController:
|
|
|
|
def __init__(self):
|
|
self.gui = gui.App()
|
|
self.gui.mainloop()
|
|
|
|
|
|
|
|
|
|
if "__main__" == __name__:
|
|
SvgExportController()
|