(key string, message string)
| 535 | } |
| 536 | |
| 537 | func deprecated(key string, message string) { |
| 538 | if _, set := os.LookupEnv(key); set { |
| 539 | say.Say("Configuration option '" + key + "' is deprecated.") |
| 540 | say.Say(message) |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | func experimental(key string) { |
| 545 | if _, set := os.LookupEnv(key); set { |
no test coverage detected