forgot tags on log - lame me.

nats
Paulo Simão 2021-10-11 15:11:42 -03:00
parent 2a9dd021e6
commit f3abaa694d
1 changed files with 7 additions and 7 deletions

View File

@ -201,13 +201,13 @@ type Credentials struct {
type Log struct {
Model
Alias string
Title string
Tags string
Dtlog time.Time
Data []byte
Err string
Stack []byte
Alias string `json:"alias,omitempty"`
Title string `json:"title,omitempty"`
Tags string `json:"tags,omitempty"`
Dtlog time.Time `json:"dtlog"`
Data []byte `json:"data,omitempty"`
Err string `json:"err,omitempty"`
Stack []byte `json:"stack,omitempty"`
}
type LogQuery struct {
From time.Time `json:"from"`