mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-09-03 20:21:38 +00:00
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))
|
|
}
|