lightning-terminal/app_noui.go
sputn1ck bc0bc687ae
multi: add support for building without UI
This commit adds support for building without UI.
If the build tag "litd no_ui" is set the UI will
be disabled.
2024-08-14 13:33:38 +02:00

10 lines
107 B
Go

//go:build litd_no_ui
// +build litd_no_ui
package terminal
import "embed"
var (
appBuildFS embed.FS
)