Closed Pokom closed 11 months ago
One thing that's nagged me is the provider + collectors have reduntant method names. IE, aws.NewAWS or s3.NewCollector. This refactors them to be aws.New and s3.New.
aws.NewAWS
s3.NewCollector
aws.New
s3.New
Also refactors collector package to provider as it's a more apt description.
collector
provider
One thing that's nagged me is the provider + collectors have reduntant method names. IE,
aws.NewAWS
ors3.NewCollector
. This refactors them to beaws.New
ands3.New
.Also refactors
collector
package toprovider
as it's a more apt description.