refactor: reduce use of pointers in particular, Source can no longer be nil. Instantiate a Source with an Importer of All instead
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M internal/config/repository.go → internal/config/repository.go
@@ -107,6 +107,6 @@ return err } -func (f *RepoType) MarshalText() ([]byte, error) { +func (f RepoType) MarshalText() ([]byte, error) { return []byte(f.String()), nil }