From dcec9f7485595ba79512329c103872522f6cb2cf Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Fri, 28 Apr 2023 05:33:20 -0700 Subject: config: Rename Package to PackageConfig, add docs (#84) Renames the Package struct to PackageConfig to make it clear that it is a configuration struct. This differentiation will help disconnect the configuration-level representation from the runtime representation of this information. This patch also adds documentation to the config package that was previously missing. --- handler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'handler_test.go') diff --git a/handler_test.go b/handler_test.go index b1d5d2e..9cb84ff 100644 --- a/handler_test.go +++ b/handler_test.go @@ -131,7 +131,7 @@ func TestPostRejected(t *testing.T) { h := CreateHandler(&Config{ URL: "go.uberalt.org", - Packages: map[string]Package{ + Packages: map[string]PackageConfig{ "zap": { Repo: "github.com/uber-go/zap", }, -- cgit v1.2.3