| 7 | ) |
| 8 | |
| 9 | type Source struct { |
| 10 | rootDirectory string |
| 11 | environ map[string]string |
| 12 | warner Warner |
| 13 | cached struct { |
| 14 | wireguardLoaded bool |
| 15 | wireguardConf WireguardConfig |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | func New(warner Warner) (source *Source) { |
| 20 | osEnviron := os.Environ() |
nothing calls this directly
no outgoing calls
no test coverage detected