mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 00:39:50 +08:00

* Tidy up dev mode output * Rename `appng` package to `app` * Remove `crypto`,`parse`,`messagedispatcher`,`servicebus`,`runtime`,`subsystem`,`ffenestri` packages and `.vscode` dir * Remove misc `fs` functions * Remove `str` package * Fix redundant alias
17 lines
277 B
Go
17 lines
277 B
Go
//go:build linux && !bindings
|
|
// +build linux,!bindings
|
|
|
|
package app
|
|
|
|
import (
|
|
"github.com/wailsapp/wails/v2/internal/logger"
|
|
"github.com/wailsapp/wails/v2/pkg/options"
|
|
)
|
|
|
|
func PreflightChecks(options *options.App, logger *logger.Logger) error {
|
|
|
|
_ = options
|
|
|
|
return nil
|
|
}
|