Demo script updates. Record-replay, a bugfix in the canary demo script, etc.
13 lines
207 B
Go
13 lines
207 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// Handler is the entry point for this fission function
|
|
|
|
func Handler(w http.ResponseWriter, r *http.Request) {
|
|
msg := "Hello, CNCF Webinar!\n"
|
|
w.Write([]byte(msg))
|
|
}
|