Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Théo Giovanna
bitmask_client
Commits
b3f55389
Unverified
Commit
b3f55389
authored
Mar 08, 2016
by
Kali Kaneko
Browse files
[feature] add bitmaskd entrypoint
parent
23d5143d
Changes
2
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
b3f55389
...
...
@@ -479,6 +479,7 @@ extra_options = {}
gui_launcher
=
'bitmask=leap.bitmask.app:start_app'
bitmask_cli
=
'bitmask_cli=leap.bitmask.cli.bitmask_cli:main'
bitmaskd
=
'bitmaskd=leap.bitmask.core.launcher:run_bitmaskd'
setup
(
...
...
@@ -516,7 +517,7 @@ setup(
zip_safe
=
False
,
platforms
=
"all"
,
entry_points
=
{
'console_scripts'
:
[
gui_launcher
,
bitmask_cli
]
'console_scripts'
:
[
gui_launcher
,
bitmask_cli
,
bitmaskd
]
},
**
extra_options
)
src/leap/bitmask/core/launcher.py
View file @
b3f55389
...
...
@@ -35,3 +35,7 @@ def run_bitmaskd():
]
print
'[+] launching bitmaskd...'
run
()
if
__name__
==
"__main__"
:
run_bitmaskd
()
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment