mirror of
https://github.com/httpie/cli.git
synced 2024-11-14 20:04:55 +01:00
11 lines
176 B
Python
11 lines
176 B
Python
#!/usr/bin/env python
|
|
"""The main entry point. Invoke as `http' or `python -m httpie'.
|
|
|
|
"""
|
|
import sys
|
|
from .core import main
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|