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