9 lines
157 B
Go
9 lines
157 B
Go
|
package version
|
||
|
|
||
|
var (
|
||
|
// Version is the current File Browser version.
|
||
|
Version = "(untracked)"
|
||
|
// CommitSHA is the commit sha.
|
||
|
CommitSHA = "(unknown)"
|
||
|
)
|