1
0
mirror of https://github.com/httpie/cli.git synced 2024-11-28 08:38:44 +02:00
httpie-cli/extras/packaging/linux/scripts/httpie_cli.py
Batuhan Taskaya dd2c9513f3
Single binary executables (#1330)
* Single binary executables / DEB packages.

* Attach single binary executables to the releases
2022-04-14 08:11:12 -07:00

6 lines
105 B
Python

from httpie.manager.__main__ import main
if __name__ == '__main__':
import sys
sys.exit(main())