mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-29 10:28:53 +03:00
14 lines
279 B
Go
14 lines
279 B
Go
|
package update
|
||
|
|
||
|
type VersionInfo struct {
|
||
|
NewVersion string
|
||
|
Announcement string
|
||
|
AnnouncementURL string
|
||
|
SelfUpdateMinVersion string
|
||
|
CanAutoUpdate bool
|
||
|
}
|
||
|
|
||
|
func (u *Updater) GetVersionResponse() (VersionInfo, error) {
|
||
|
return VersionInfo{}, nil
|
||
|
}
|