mirror of
https://github.com/projecthorus/sondehub-infra.git
synced 2024-12-26 08:11:08 +00:00
13 lines
266 B
Python
13 lines
266 B
Python
import boto3
|
|
import time
|
|
import uuid
|
|
import urllib.parse
|
|
import hmac, datetime, hashlib
|
|
import os
|
|
|
|
def lambda_handler(event, context):
|
|
|
|
return {"statusCode": 200, "body": "wss://ws.v2.sondehub.org/"}
|
|
|
|
if __name__ == "__main__":
|
|
print(lambda_handler({}, {})) |