Actually make fucking interfaces

This commit is contained in:
2025-10-10 22:31:01 +02:00
parent da5133eef8
commit a09a01e7bc
8 changed files with 44 additions and 19 deletions

View File

@@ -1,3 +1,4 @@
// Package options handles configuration management for the EVE PI application.
package options
import (
@@ -129,7 +130,7 @@ func GenerateEnvExample() error {
return err
}
func generateExampleValue(fieldName, envKey, defaultValue string) string {
func generateExampleValue(_, envKey, defaultValue string) string {
// If there's a default value, use it
if defaultValue != "" {
return defaultValue