2
0
mirror of https://github.com/sloumdrone/burrow synced 2024-06-14 04:56:37 +00:00
burrow/burrow.py

14 lines
314 B
Python
Raw Normal View History

#!/usr/bin/env python3
################################################
## Burrow, a gopher client/browser
## - - - - - - - - - - - - - - - - - - - - - - -
## Version 0.2.1
################################################
from gui import GUI
if __name__ == '__main__':
app = GUI()
app.root.mainloop()