Automatic push from FunctionsAPI
This commit is contained in:
parent
65255fa059
commit
04c1167658
@ -1,2 +1,2 @@
|
||||
# b09903321a3a4652b8a7a0ed0bd8139d
|
||||
# ecf1b99186d449af8485d8e493de5f44
|
||||
|
||||
|
||||
BIN
__MACOSX/.____init___.py
Normal file
BIN
__MACOSX/.____init___.py
Normal file
Binary file not shown.
BIN
__MACOSX/._main.py
Normal file
BIN
__MACOSX/._main.py
Normal file
Binary file not shown.
0
___init___.py
Normal file
0
___init___.py
Normal file
13
main.py
Normal file
13
main.py
Normal file
@ -0,0 +1,13 @@
|
||||
import logging
|
||||
|
||||
# Configure the logging
|
||||
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
||||
|
||||
|
||||
def main(request):
|
||||
logging.info(f"Function called with request: {request}")
|
||||
|
||||
data = request.get_json(force=True)
|
||||
|
||||
logging.info(f"Received data: {data}")
|
||||
return {"result": data.get("a", 0)+data.get("b", 0)}
|
||||
Loading…
Reference in New Issue
Block a user