Refactor web.py to move all the web logic into the Web class, and refactor onionshare (cli) to work with it -- but onionshare_gui is currently broken

This commit is contained in:
Micah Lee 2018-03-05 11:06:59 -08:00
parent 08957c5145
commit 0cec696055
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
3 changed files with 320 additions and 366 deletions

View file

@ -22,7 +22,8 @@ import os, sys, platform, argparse
from .alert import Alert
from PyQt5 import QtCore, QtWidgets
from onionshare import strings, common, web
from onionshare import strings, common
from .web import Web
from onionshare.onion import Onion
from onionshare.onionshare import OnionShare
from onionshare.settings import Settings