diff options
| author | Rasmus Dahlberg <rasmus@rgdd.se> | 2024-05-16 07:47:04 +0200 | 
|---|---|---|
| committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2024-05-16 07:47:04 +0200 | 
| commit | bea0a1bce37a73acb323269edeaa5b7d11a2b42d (patch) | |
| tree | f809f0d0129478e0c1dbe526c7ca6855c6665432 /internal/manager | |
| parent | 6f90052197d3906cb5406b9c65a3a8cdc7fe200b (diff) | |
Fix nits spotted by go vet
Diffstat (limited to 'internal/manager')
| -rw-r--r-- | internal/manager/manager.go | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/internal/manager/manager.go b/internal/manager/manager.go index ba7f1d0..bf1ad92 100644 --- a/internal/manager/manager.go +++ b/internal/manager/manager.go @@ -21,10 +21,10 @@ type Config struct {  	Directory string // Path to a directory where everything will be stored  	// Optional -	Logger                  logger.Logger // Where to output messages and with what verbosity -	AlertDelay              time.Duration // Time before alerting on certificates that are unaccounted for -	MetadataRefreshInterval time.Duration // How often to update the list of monitored logs -	ShutdownTimeout         time.Duration // Force shutdown after this timeout (FIXME: should not be needed) +	Logger                  *logger.Logger // Where to output messages and with what verbosity +	AlertDelay              time.Duration  // Time before alerting on certificates that are unaccounted for +	MetadataRefreshInterval time.Duration  // How often to update the list of monitored logs +	ShutdownTimeout         time.Duration  // Force shutdown after this timeout (FIXME: should not be needed)  }  type Manager struct { | 
