(v any)
| 52 | } |
| 53 | |
| 54 | func isTypeAllowed(v any) bool { |
| 55 | switch v.(type) { |
| 56 | case string, bool, int, float32, float64: |
| 57 | return true |
| 58 | default: |
| 59 | return false |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | func GetTaskEnv(key string) string { |
| 64 | return os.Getenv(taskVarPrefix + key) |
no outgoing calls
no test coverage detected
searching dependent graphs…