| 9 | ) |
| 10 | |
| 11 | type Source struct { |
| 12 | rootDirectory string |
| 13 | environ map[string]string |
| 14 | warner Warner |
| 15 | cached struct { |
| 16 | wireguardLoaded bool |
| 17 | wireguardConf files.WireguardConfig |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func New(warner Warner) (source *Source) { |
| 22 | const rootDirectory = "/run/secrets" |
nothing calls this directly
no outgoing calls
no test coverage detected