5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 17:39:58 +08:00
wails/v2/internal/frontend/frontend_windows.go
2021-07-22 19:49:54 +10:00

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)
}