| 38 | } |
| 39 | |
| 40 | type WslReg interface { |
| 41 | GetProfileFromName(name string) (Profile, error) |
| 42 | GetProfileFromBasePath(path string) (Profile, error) |
| 43 | WriteProfile(profile Profile) error |
| 44 | SetWslVersion(name string, version int) error |
| 45 | GenerateProfile() Profile |
| 46 | } |
| 47 | |
| 48 | type Dependencies struct { |
| 49 | Wsl WslLib |
no outgoing calls
no test coverage detected