add MainWindow class

This commit is contained in:
Josh Holtrop 2016-06-22 13:50:49 -04:00
parent 92df96883c
commit 703aa114ab
3 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1 @@
from simplesvnbrowser.main_window import MainWindow

View File

@ -1,2 +1,4 @@
import simplesvnbrowser
def run(argv):
print(argv)

View File

@ -0,0 +1,3 @@
class MainWindow:
def __init__(self):
pass