Files
fn-serverless/examples/apps/blog/func.go
Reed Allman 1cdb47d6e9 server, examples, extensions lint compliant (#1109)
these are all automated changes suggested by golint
2018-07-04 15:23:15 +01:00

23 lines
361 B
Go

package main
import (
"encoding/json"
"fmt"
"os"
)
type person struct {
Name string
}
func main() {
p := &person{Name: "World"}
json.NewDecoder(os.Stdin).Decode(p)
mapD := map[string]string{
"message": fmt.Sprintf("Hello %s", p.Name),
"posts": "http://localhost:8080/r/blog/posts",
}
mapB, _ := json.Marshal(mapD)
fmt.Println(string(mapB))
}