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:
parent
6120f3585d
commit
4e4ae3c911
4 changed files with 4 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env node
|
||||
/**
|
||||
* PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
||||
*
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
/**
|
||||
* PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env ruby
|
||||
# frozen_string_literal: true
|
||||
|
||||
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue