mirror of
https://github.com/Li4n0/revsuit.git
synced 2026-09-21 22:30:46 +08:00
15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
import request from "@/api/index";
|
|
|
|
export function getVersion() {
|
|
return request({
|
|
url: '/version',
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
export function getUpgrade() {
|
|
return request({
|
|
url: '/getUpgrade',
|
|
method: 'get',
|
|
})
|
|
} |