mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:39:58 +08:00
8 lines
159 B
Go
8 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"`
|
|
}
|