all: Run go fix ./...

This commit is contained in:
Bjørn Erik Pedersen
2026-03-07 16:37:47 +01:00
parent c9b88e4d15
commit e3108225bf
44 changed files with 205 additions and 187 deletions
+1 -1
View File
@@ -202,7 +202,7 @@ func stringSliceToWhitelistHook() mapstructure.DecodeHookFuncType {
t reflect.Type,
data any,
) (any, error) {
if t != reflect.TypeOf(Whitelist{}) {
if t != reflect.TypeFor[Whitelist]() {
return data, nil
}