(req Request)
| 60 | } |
| 61 | |
| 62 | func UpdateMathMax(req Request) (string, map[string]string, error) { |
| 63 | val, err := mathMax(req) |
| 64 | if err != nil { |
| 65 | return "invalid", nil, err |
| 66 | } |
| 67 | |
| 68 | return req.PhysicalResourceId, map[string]string{ |
| 69 | "Value": val, |
| 70 | }, nil |
| 71 | } |
| 72 | |
| 73 | func CreateMathMin(req Request) (string, map[string]string, error) { |
| 74 | val, err := mathMin(req) |
no test coverage detected