(ctx ofctx.Context, in []byte)
| 7 | ) |
| 8 | |
| 9 | func HandleCronInput(ctx ofctx.Context, in []byte) (ofctx.Out, error) { |
| 10 | if in != nil { |
| 11 | log.Printf("binding - Data: %s", in) |
| 12 | } else { |
| 13 | log.Print("binding - Data: Received") |
| 14 | } |
| 15 | return ctx.ReturnOnSuccess(), nil |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected