mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:39:58 +08:00
12 lines
319 B
Go
12 lines
319 B
Go
package frontend
|
|
|
|
import (
|
|
"github.com/wailsapp/wails/v2/internal/frontend/windows"
|
|
"github.com/wailsapp/wails/v2/internal/logger"
|
|
"github.com/wailsapp/wails/v2/pkg/options"
|
|
)
|
|
|
|
func NewFrontend(appoptions *options.App, myLogger *logger.Logger) *windows.Frontend {
|
|
return windows.NewFrontend(appoptions, myLogger)
|
|
}
|