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 bba5286815
commit e51be47844
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
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