mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-26 23:28:08 +03:00
13 lines
279 B
Go
13 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
|
|
}
|