Environment is a restricted version of config.Environment that only provides a single method.
| 19 | // Environment is a restricted version of config.Environment that only provides |
| 20 | // a single method. |
| 21 | type Environment interface { |
| 22 | // Get is shorthand for calling `e.Fetcher.Get(key)`. |
| 23 | Get(key string) (val string, ok bool) |
| 24 | } |
| 25 | |
| 26 | // Configuration can fetch or modify the current Git config and track the Git |
| 27 | // version. |
nothing calls this directly
no outgoing calls
no test coverage detected