restructure: console→client-console, add admin-console skeleton, move docs to doc/

This commit is contained in:
“Naeel”
2026-05-25 09:48:55 +04:00
parent 3e36ff13a8
commit 34a8068da5
110 changed files with 615 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import requests
def main(event=None, context=None):
try:
r = requests.get('https://httpbin.org/get', timeout=3)
return {
"statusCode": 200,
"body": f"Demo OK: {r.status_code}, {r.json().get('url')}"
}
except Exception as e:
return {
"statusCode": 500,
"body": f"Error: {str(e)}"
}