blob: 56b45712fcd5c452f3395a8d4d49166fb079ce21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 11 february 2014
package ui
// Go sets up the UI environment and runs main in a goroutine.
// If initialization fails, Go returns an error and main is not called.
// Otherwise, Go does not return to its caller until (unless? TODO) the application loop exits, at which point it returns nil.
//
// This model is undesirable, but Cocoa limitations require it.
func Go(main func()) error {
return ui(main)
}
|