mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
This commit adds support for building without UI. If the build tag "litd no_ui" is set the UI will be disabled.
10 lines
107 B
Go
10 lines
107 B
Go
//go:build litd_no_ui
|
|
// +build litd_no_ui
|
|
|
|
package terminal
|
|
|
|
import "embed"
|
|
|
|
var (
|
|
appBuildFS embed.FS
|
|
)
|