mirror of https://github.com/icedream/icecon.git
13 lines
185 B
Go
13 lines
185 B
Go
|
//+build !windows
|
||
|
|
||
|
package main
|
||
|
|
||
|
var flagGuiIncompatible = false
|
||
|
var flagGui = &flagGuiIncompatible
|
||
|
|
||
|
var hasGraphicalUI = false
|
||
|
|
||
|
func runGraphicalUi() error {
|
||
|
return errNotSupported
|
||
|
}
|