dnote/pkg/server/buildinfo/info.go
2022-04-17 15:02:50 +10:00

15 lines
388 B
Go

package buildinfo
var (
// Version is the server version
Version = "master"
// CSSFiles is the css files
CSSFiles = ""
// JSFiles is the js files
JSFiles = ""
// RootURL is the root url
RootURL = "/"
// Standalone reprsents whether the build is for on-premises. It is a string
// rather than a boolean, so that it can be overridden during compile time.
Standalone = "false"
)