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/server/source.go → internal/server/source.go
@@ -14,7 +14,7 @@ ) type SourceHandler struct { global *GlobalHandler - source *config.Source + source config.Source mux *http.ServeMux }