17 lines
339 B
Go
17 lines
339 B
Go
package build
|
|
|
|
import "b612.me/apps/b612/version"
|
|
|
|
// Version stores the current version of the app
|
|
var Version = version.Version
|
|
|
|
// Time of the build
|
|
var Time string
|
|
|
|
// User who built it
|
|
var User string
|
|
|
|
// RootPathPrefix stores path to be prepended to given absolute path
|
|
// e.g. /var/lib/snapd/hostfs for snap
|
|
var RootPathPrefix = ""
|