mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-08-28 13:25:43 +00:00
f20becda68
Signed-off-by: Sophia Gong <sophia.gong@intel.com>
11 lines
163 B
Go
11 lines
163 B
Go
package function
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// Handle a serverless request
|
|
func Handle(req []byte) string {
|
|
return fmt.Sprintf("Hello, Go. You said: %s", string(req))
|
|
}
|