mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 11:10:47 +08:00
18 lines
281 B
Go
18 lines
281 B
Go
package application
|
|
|
|
import (
|
|
"github.com/wailsapp/wails/v3/pkg/logger"
|
|
)
|
|
|
|
type Options struct {
|
|
Name string
|
|
Description string
|
|
Icon []byte
|
|
Mac MacOptions
|
|
Bind []any
|
|
Logger struct {
|
|
Silent bool
|
|
CustomLoggers []logger.Output
|
|
}
|
|
}
|