- Add shinning UI
- Revamp deployment process - Fix Alldebrid file node bug
This commit is contained in:
18
pkg/version/version.go
Normal file
18
pkg/version/version.go
Normal file
@@ -0,0 +1,18 @@
|
||||
package version
|
||||
|
||||
type Info struct {
|
||||
Version string `json:"version"`
|
||||
Channel string `json:"channel"`
|
||||
}
|
||||
|
||||
var (
|
||||
Version = ""
|
||||
Channel = ""
|
||||
)
|
||||
|
||||
func GetInfo() Info {
|
||||
return Info{
|
||||
Version: Version,
|
||||
Channel: Channel,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user