cli/actions.go
Snider 003996b148 refactor: Flatten repository structure (#28)
- 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>
2025-11-13 18:47:46 +00:00

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
}