- Move Go files from core, e, and runtime directories to the project root. - Unify package declarations to a single 'core' package. - Update go.work to exclude the cmd directory from the main build. - Resolve naming conflicts and update import paths. - Fix tests to work with the new structure. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
13 lines
320 B
Go
13 lines
320 B
Go
package core
|
|
|
|
import "github.com/wailsapp/wails/v3/pkg/application"
|
|
|
|
type ActionServiceStartup struct{}
|
|
|
|
type ActionServiceShutdown struct{}
|
|
|
|
// ActionDisplayOpenWindow is a structured message for requesting a new window.
|
|
type ActionDisplayOpenWindow struct {
|
|
Name string
|
|
Options application.WebviewWindowOptions
|
|
}
|