in funcframework/framework.go [83:89]
func RegisterEventFunction(path string, fn interface{}) {
ctx := context.Background()
defer recoverPanic(nil, "function registration", false)
if err := RegisterEventFunctionContext(ctx, path, fn); err != nil {
panic(fmt.Sprintf("unexpected error in RegisterEventFunctionContext: %v", err))
}
}