mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
10 lines
104 B
PHP
10 lines
104 B
PHP
<?php
|
|
|
|
|
|
function main_handler($event, $context) {
|
|
var_dump($event);
|
|
return "hello world";
|
|
}
|
|
|
|
?>
|