forked from extern/httpie-cli
87042f65c9
Refactoring and general cleanup.
11 lines
156 B
Python
11 lines
156 B
Python
#!/usr/bin/env python
|
|
"""
|
|
The main entry point. Invoke as `http' or `python -m httpie'.
|
|
|
|
"""
|
|
from .core import main
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|