mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-04-15 03:57:30 +08:00
13 lines
206 B
Go
13 lines
206 B
Go
//go:build !with_tui
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
var tuiEnabled = false
|
|
|
|
func tuiCmd() {
|
|
fmt.Println("TUI is not included in this build.")
|
|
fmt.Println("Build with `with_tui` tag to use `clawgo tui`.")
|
|
}
|