Move MODE_SHARE, MODE_RECEIVE, and MODE_WEBSITE into GuiCommon

This commit is contained in:
Micah Lee 2019-10-20 20:05:08 -07:00
parent bd832051e0
commit 2c1225b757
3 changed files with 34 additions and 38 deletions

View file

@ -24,6 +24,10 @@ class GuiCommon:
The shared code for all of the OnionShare GUI.
"""
MODE_SHARE = "share"
MODE_RECEIVE = "receive"
MODE_WEBSITE = "website"
def __init__(self, common):
self.common = common