mirror of https://github.com/knative/docs.git
14 lines
402 B
Go
14 lines
402 B
Go
package main
|
|
|
|
// HelloWorld defines the Data of CloudEvent with type=dev.knative.samples.helloworld
|
|
type HelloWorld struct {
|
|
// Msg holds the message from the event
|
|
Msg string `json:"msg,omitempty"`
|
|
}
|
|
|
|
// HiFromKnative defines the Data of CloudEvent with type=dev.knative.samples.hifromknative
|
|
type HiFromKnative struct {
|
|
// Msg holds the message from the event
|
|
Msg string `json:"msg,omitempty"`
|
|
}
|