mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-15 15:15:51 +01:00
7 lines
159 B
Go
7 lines
159 B
Go
package messages
|
|
|
|
// LogData represents a call to log from the frontend
|
|
type LogData struct {
|
|
Level string `json:"level"`
|
|
Message string `json:"string"`
|
|
}
|