// Copyright 2017-2025 WIT.COM Inc. All rights reserved. // Use of this source code is governed by the GPL 3.0 package main // An app to submit patches for the 30 GO GUI repos func doGui() { win := makebasicWindow() win.Show() /* win := gadgets.NewGenericWindow("testing", "Current Conversations") win.Custom = func() { log.Warn("MAIN WINDOW CLOSE") gui.StandardExit() os.Exit(0) } grid := win.Group.RawGrid() grid.NewLabel("label worked") grid.NextRow() grid.NewButton("more", func() { }) */ }