all repos — searchix @ 9a2885694e2f8153151cc92772d2bea85672939a

Search engine for NixOS, nix-darwin, home-manager and NUR users

refactor: remove toml special cases
Alan Pearce alan@alanpearce.eu
Thu, 16 May 2024 17:04:23 +0200
commit

9a2885694e2f8153151cc92772d2bea85672939a

parent

f79f1deb956cd3f5788e7f602d883417badaebbd

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M internal/config/source.gointernal/config/source.go
@@ -57,9 +57,9 @@ Type          Type 	Channel       string
 	URL           string
 	Attribute     string
-	ImportPath    string        `toml:"import-path"`
-	FetchTimeout  time.Duration `toml:"fetch-timeout"`
-	ImportTimeout time.Duration `toml:"import-timeout"`
-	OutputPath    string        `toml:"output-path"`
+	ImportPath    string
+	FetchTimeout  time.Duration
+	ImportTimeout time.Duration
+	OutputPath    string
 	Repo          Repository
 }