fix: add shebangs to async SDK implementations

Add #!/usr/bin/env interpreter lines to async SDKs for portability:
- Python: #!/usr/bin/env python3
- JavaScript: #!/usr/bin/env node
- Ruby: #!/usr/bin/env ruby
- PHP: #!/usr/bin/env php
This commit is contained in:
russell@unturf.com 2026-01-29 06:09:44 -05:00
parent 6120f3585d
commit 4e4ae3c911
4 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,4 @@
#!/usr/bin/env node
/**
* PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
*

View file

@ -1,3 +1,4 @@
#!/usr/bin/env php
<?php
/**
* PUBLIC DOMAIN - NO LICENSE, NO WARRANTY

View file

@ -1,3 +1,4 @@
#!/usr/bin/env python3
"""
PUBLIC DOMAIN - NO LICENSE, NO WARRANTY

View file

@ -1,3 +1,4 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY