mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 15:42:53 +08:00
12 lines
226 B
Go
12 lines
226 B
Go
package logger
|
|
|
|
import "time"
|
|
|
|
type Message struct {
|
|
Level string `json:"log"`
|
|
Message string `json:"message"`
|
|
Data []any `json:"data,omitempty"`
|
|
Sender string `json:"-"`
|
|
Time time.Time `json:"-"`
|
|
}
|