diff options
| author | Abhinav Gupta <mail@abhinavg.net> | 2023-04-28 05:33:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-28 05:33:20 -0700 |
| commit | dcec9f7485595ba79512329c103872522f6cb2cf (patch) | |
| tree | b4a2cde20ff1fc7d0b33e92c6c1a5dc0930f53cc /handler_test.go | |
| parent | eefdad4a93f81fa4c1ef1c8bacf9e829c4b27400 (diff) | |
| download | sally-dcec9f7485595ba79512329c103872522f6cb2cf.tar.gz | |
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.
Diffstat (limited to '')
| -rw-r--r-- | handler_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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", }, |