fix: lint issues after merge

This commit is contained in:
Hein
2025-12-30 17:46:33 +02:00
parent 0bd653820c
commit 49cdc6f17b
3 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ func newMountPoint(config MountConfig, defaults *ServiceConfig) (*mountPoint, er
}
if config.Provider == nil {
return nil, fmt.Errorf("Provider cannot be nil")
return nil, fmt.Errorf("provider cannot be nil")
}
mp := &mountPoint{

View File

@@ -182,7 +182,7 @@ func (s *service) validateMountConfig(config MountConfig) error {
}
if config.Provider == nil {
return fmt.Errorf("Provider cannot be nil")
return fmt.Errorf("provider cannot be nil")
}
return nil