Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
#!/usr/bin/env python
"""The main entry point. Invoke as `awscurl' or `python -m awscurl'.
"""
import sys
from .awscurl import main
if __name__ == '__main__':
sys.exit(main())