Skip to content

AppController

AppController exposes launcher metadata to the frontend.

  • Methods: 1
  • Referenced types: 0

Methods

AppInfo

AppInfo returns launcher metadata needed by the application shell.

Go

go
AppInfo() map[string]any

TypeScript

ts
AppInfo(): Promise<Record<string, unknown>>

Returns

Go typeTypeScript type
map[string]anyRecord<string, unknown>

Example

ts
const appInfo = await AppInfo()

Source

internal/transport/wails/app_controller.go:13