tahoe-lafs/windows/confwiz.py
robk-tahoe 5085c35002 cleanup mac and windows build code
this moves some of the code common to both windows and mac builds into the
allmydata module hierarchy, and cleans up the windows and mac build directories
to import the code from there.
2008-01-23 21:06:41 -07:00

10 lines
140 B
Python

from allmydata.gui.confwiz import ConfWizApp
def main():
app = ConfWizApp()
app.MainLoop()
if __name__ == '__main__':
main()