feat(config): print durations and URLs with human values
1 file changed, 2 insertions(+), 6 deletions(-)
changed files
M internal/config/source.go → internal/config/source.go
@@ -1,9 +1,5 @@ package config -import ( - "time" -) - type Source struct { Name string Key string@@ -14,8 +10,8 @@ Channel string URL string Attribute string ImportPath string - FetchTimeout time.Duration - ImportTimeout time.Duration + FetchTimeout Duration + ImportTimeout Duration OutputPath string Repo Repository }