Skip to content

Commit 7f0f622

Browse files
committed
chore: update
1 parent d0e94bd commit 7f0f622

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
vfox.lhan.me
1+
vfox.dev

docs/plugins/available.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import axios from 'axios'
1212
const info = ref({})
1313
const success = ref(false)
1414

15-
axios.get('https://vfox-plugins.lhan.me/index.json').then(res => {
15+
axios.get('https://version-fox.github.io/vfox-plugins/index.json').then(res => {
1616
info.value = res.data
1717
success.value = true
1818
})

internal/module/http/http_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ func TestDownloadFile(t *testing.T) {
8989
assert(type(http) == "table")
9090
assert(type(http.get) == "function")
9191
local err = http.download_file({
92-
url = "https://vfox-plugins.lhan.me/index.json"
92+
url = "https://version-fox.github.io/vfox-plugins/index.json"
9393
}, "index.json")
9494
assert(err == nil, [[must be nil]] )
9595
local err = http.download_file({
96-
url = "https://vfox-plugins.lhan.me/xxx.json"
96+
url = "https://version-fox.github.io/vfox-plugins/xxx.json"
9797
}, "xxx.json")
9898
assert(err == "file not found")
9999
`

0 commit comments

Comments
 (0)