mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 16:02:07 +08:00
16 lines
277 B
Go
16 lines
277 B
Go
package options
|
|
|
|
import "github.com/wailsapp/wails/v3/pkg/logger"
|
|
|
|
type Application struct {
|
|
Name string
|
|
Description string
|
|
Icon []byte
|
|
Mac Mac
|
|
Bind []interface{}
|
|
Logger struct {
|
|
Silent bool
|
|
CustomLoggers []logger.Output
|
|
}
|
|
}
|