wip: локальный коммит всех изменений, включая новые тесты, артефакты и правки UI/infra
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
module.exports = async function(context) {
|
||||
return { status: 200, body: "Hello from Node.js!" };
|
||||
};
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "node-hello",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js"
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"name": "php-hello",
|
||||
"require": {}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
function main($event, $context) {
|
||||
return ["statusCode" => 200, "body" => "Hello from PHP!"];
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
bash: scripts/run_all.sh: No such file or directory
|
||||
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
def main(event, context):
|
||||
return {"statusCode": 200, "body": "Hello from Python!"}
|
||||
Binary file not shown.
@@ -0,0 +1,3 @@
|
||||
def main(event, context)
|
||||
{ statusCode: 200, body: "Hello from Ruby!" }
|
||||
end
|
||||
Reference in New Issue
Block a user