This commit adds comprehensive docstrings to all Go files in the root of the repository, achieving 100% documentation coverage. Examples have been included where appropriate to improve clarity. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
17 lines
656 B
Go
17 lines
656 B
Go
package core
|
|
|
|
import "github.com/wailsapp/wails/v3/pkg/application"
|
|
|
|
// ActionServiceStartup is a message sent when the application's services are starting up.
|
|
// This provides a hook for services to perform initialization tasks.
|
|
type ActionServiceStartup struct{}
|
|
|
|
// ActionServiceShutdown is a message sent when the application is shutting down.
|
|
// This allows services to perform cleanup tasks, such as saving state or closing resources.
|
|
type ActionServiceShutdown struct{}
|
|
|
|
// ActionDisplayOpenWindow is a structured message for requesting a new window.
|
|
type ActionDisplayOpenWindow struct {
|
|
Name string
|
|
Options application.WebviewWindowOptions
|
|
}
|