An open API service indexing awesome lists of open source software.

https://github.com/zenliucn/guic

golang gui console helper for windows(gui application with console mode)
https://github.com/zenliucn/guic

console gui windowsconsolegui

Last synced: about 2 months ago
JSON representation

golang gui console helper for windows(gui application with console mode)

Awesome Lists containing this project

README

          

# guic
golang gui console helper for windows.
## use
```go
package main
import(
"os"
"github.com/ZenLiuCN/guic"
)
func main() {
if len(os.Args) > 1 && os.Args[1] == "-c" {
guic.AttachConsole() //make console enable
}else{
//do things with GUI
}
//DO things
}
```
build with `go build -ldflags "-H windowsgui"`, you made it: a GUI application with console support.