Main file added

This commit is contained in:
Davte 2020-11-15 20:45:46 +01:00
parent 63d65cf786
commit 0e17e72283
Signed by: Davte
GPG Key ID: 209AE674A0007425
2 changed files with 7 additions and 1 deletions

View File

@ -13,6 +13,6 @@ __author__ = "Davide Testa"
__email__ = "davide@davte.it" __email__ = "davide@davte.it"
__credits__ = [] __credits__ = []
__license__ = "GNU General Public License v3.0" __license__ = "GNU General Public License v3.0"
__version__ = "0.0.9" __version__ = "0.0.10"
__maintainer__ = "Davide Testa" __maintainer__ = "Davide Testa"
__contact__ = "t.me/davte" __contact__ = "t.me/davte"

6
filebridging/__main__.py Normal file
View File

@ -0,0 +1,6 @@
mode = input("Do you want to run a filebridging (S)erver or (C)lient?\t\t")
if mode.lower().startswith('s'):
from .server import main
else:
from .client import main
main()