Improve LoadableSource implementation

This commit is contained in:
nemunaire 2024-10-09 09:02:32 +02:00
commit 207a4562e6
4 changed files with 31 additions and 25 deletions

View file

@ -9,8 +9,8 @@ import (
)
type CustomSource struct {
Source string `json:"src"`
KV map[string]string `json:"kv"`
Source string `json:"src"`
KV map[string]interface{} `json:"kv"`
}
type Settings struct {