11 lines
219 B
Go
11 lines
219 B
Go
package version
|
|
|
|
var (
|
|
// Version is the current File Browser version.
|
|
Version = "(untracked)"
|
|
// CommitSHA is the commmit sha.
|
|
CommitSHA = "(unknown)"
|
|
//GitURL is the url of the remote
|
|
GitURL = "(unavailable)"
|
|
)
|