diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-10-09 09:59:52 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-10-09 10:00:59 +0200 |
commit | e80d577eca049b4968d30c77ab646fa4fcd01780 (patch) | |
tree | af48600c83613401d7c8be7c7f6db5f616ce68af /bigclown-gateway/files/bcg | |
parent | 3532fa47380fb79d6c6edb32039c1b491f64709a (diff) | |
parent | d32f4c85ac3634a3a4c35d4fec7dc8131c9cfcab (diff) | |
download | openwrt-personal-pkgs-e80d577eca049b4968d30c77ab646fa4fcd01780.tar.gz openwrt-personal-pkgs-e80d577eca049b4968d30c77ab646fa4fcd01780.tar.bz2 openwrt-personal-pkgs-e80d577eca049b4968d30c77ab646fa4fcd01780.zip |
Merge branch 'turris3x'
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')() + ) |