Main file added
This commit is contained in:
parent
63d65cf786
commit
0e17e72283
@ -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
6
filebridging/__main__.py
Normal 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()
|
Loading…
x
Reference in New Issue
Block a user