sondehub-infra/sign-websocket/lambda_function.py

13 lines
266 B
Python
Raw Normal View History

2021-02-01 06:08:59 +00:00
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/"}
2021-02-01 06:08:59 +00:00
if __name__ == "__main__":
print(lambda_handler({}, {}))