refactor: replace interface{} with any in web/shared

This commit is contained in:
2026-04-22 10:55:14 +02:00
parent bd828d68c0
commit fff887f79e
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ package shared
import "encoding/json"
func HxVals(v map[string]interface{}) string {
func HxVals(v map[string]any) string {
b, err := json.Marshal(v)
if err != nil {
return "{}"