mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-14 22:18:17 +08:00
10 lines
170 B
Go
10 lines
170 B
Go
package adapter
|
|
|
|
import "AynaLivePlayer/core/model"
|
|
|
|
type IApplication interface {
|
|
Version() model.VersionInfo
|
|
LatestVersion() model.VersionInfo
|
|
CheckUpdate() error
|
|
}
|