logs: interface instead of string.
This commit is contained in:
parent
afc79ed847
commit
fb2c479325
1 changed files with 3 additions and 3 deletions
|
|
@ -32,9 +32,9 @@ type SystemAdmin struct {
|
|||
type SystemLogs = []SystemLog
|
||||
|
||||
type SystemLog struct {
|
||||
Level string `json:"level"`
|
||||
Fields map[string]string `json:"fields"`
|
||||
Message string `json:"message"`
|
||||
Level string `json:"level"`
|
||||
Fields map[string]interface{} `json:"fields"`
|
||||
Message string `json:"message"`
|
||||
}
|
||||
|
||||
type SystemDisconnect struct {
|
||||
|
|
|
|||
Loading…
Reference in a new issue