burrow/burrow.py

14 lines
314 B
Python
Raw Normal View History

#!/usr/bin/env python3
################################################
## Burrow, a gopher client/browser
## - - - - - - - - - - - - - - - - - - - - - - -
2018-11-18 16:43:36 +00:00
## Version 0.8.4
################################################
from gui import GUI
if __name__ == '__main__':
app = GUI()
app.root.mainloop()