aboutsummaryrefslogtreecommitdiff
path: root/internal/feedback
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus@rgdd.se>2024-05-16 07:47:04 +0200
committerRasmus Dahlberg <rasmus@rgdd.se>2024-05-16 07:47:04 +0200
commitbea0a1bce37a73acb323269edeaa5b7d11a2b42d (patch)
treef809f0d0129478e0c1dbe526c7ca6855c6665432 /internal/feedback
parent6f90052197d3906cb5406b9c65a3a8cdc7fe200b (diff)
Fix nits spotted by go vet
Diffstat (limited to 'internal/feedback')
-rw-r--r--internal/feedback/feedback.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/feedback/feedback.go b/internal/feedback/feedback.go
index 77431e0..7501bbf 100644
--- a/internal/feedback/feedback.go
+++ b/internal/feedback/feedback.go
@@ -23,9 +23,9 @@ type Config struct {
Policy policy.Policy
// Optional
- Logger logger.Logger // Debug and info prints only (no output by default)
- PullInterval time.Duration // How often nodes are pulled via HTTP GET
- HTTPTimeout time.Duration // Timeout to use when pulling nodes
+ Logger *logger.Logger // Debug and info prints only (no output by default)
+ PullInterval time.Duration // How often nodes are pulled via HTTP GET
+ HTTPTimeout time.Duration // Timeout to use when pulling nodes
}
type Feedback struct {