diff options
Diffstat (limited to 'bigclown-gateway/files/bcg')
-rwxr-xr-x | bigclown-gateway/files/bcg | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bigclown-gateway/files/bcg b/bigclown-gateway/files/bcg new file mode 100755 index 0000000..fe261f4 --- /dev/null +++ b/bigclown-gateway/files/bcg @@ -0,0 +1,9 @@ +#!/usr/bin/python3.6 +import bcg +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.exit( + load_entry_point('bcg', 'console_scripts', 'bcg')() + ) |