mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-08-04 00:09:30 +00: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
|
|
}
|